WWW-www.enlightenment.org pushed a commit to branch master. http://git.enlightenment.org/website/www-content.git/commit/?id=73ac066ff18f6f65cc62f924323549049bd58004
commit 73ac066ff18f6f65cc62f924323549049bd58004 Author: Xavi Artigas <[email protected]> Date: Mon Dec 11 06:35:35 2017 -0800 Wiki page main-loop.md changed with summary [typo] by Xavi Artigas --- pages/develop/guides/c/core/main-loop.md.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/develop/guides/c/core/main-loop.md.txt b/pages/develop/guides/c/core/main-loop.md.txt index 50ebf4c51..3123f7825 100644 --- a/pages/develop/guides/c/core/main-loop.md.txt +++ b/pages/develop/guides/c/core/main-loop.md.txt @@ -5,7 +5,7 @@ # Main Loop Programming Guide # -The EFL is event-driven. This means that execution usually takes places within an internal EFL *Main Loop*. The application is notified through function callbacks of virtually any event happening on the computer. This is typically more efficient than *polling* for events, whereby the application has to repeatedly ask if a certain event has occurred. When nothing is happening (no events are pending) the main loop enters the *idle state* during which the CPU consumes very little power. +The EFL is event-driven. This means that execution usually takes place within an internal EFL *Main Loop*. The application is notified through function callbacks of virtually any event happening on the computer. This is typically more efficient than *polling* for events, whereby the application has to repeatedly ask if a certain event has occurred. When nothing is happening (no events are pending) the main loop enters the *idle state* during which the CPU consumes very little power. EFL manages timers, file descriptors, user interface events amongst other things and even provides a simple mechanism for applications to perform conventional data polling if required. --
