WWW-www.enlightenment.org pushed a commit to branch master. http://git.enlightenment.org/website/www-content.git/commit/?id=6b01de9fb589487d96a64dfc850cf530f9b6c5a4
commit 6b01de9fb589487d96a64dfc850cf530f9b6c5a4 Author: Xavi Artigas <[email protected]> Date: Tue Dec 5 02:23:31 2017 -0800 Wiki page main-loop.md changed with summary [Example links] by Xavi Artigas --- pages/develop/guides/c/core/main-loop.md.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pages/develop/guides/c/core/main-loop.md.txt b/pages/develop/guides/c/core/main-loop.md.txt index 093b7fe96..3125bb098 100644 --- a/pages/develop/guides/c/core/main-loop.md.txt +++ b/pages/develop/guides/c/core/main-loop.md.txt @@ -19,7 +19,7 @@ EFL manages timers, file descriptors, user interface events amongst other things Timers allow events to be triggered periodically after the given time has elapsed. After an event callback has been registered with the timer, it will be called at regular intervals. -You can find usage examples in the EFL repository: [``reference/c/core/src/core_idler.c``](https://git.enlightenment.org/tools/examples.git/tree/reference/c/core/src/core_idler.c) and [``reference/c/core/src/core_poll.c``](https://git.enlightenment.org/tools/examples.git/tree/reference/c/core/src/core_poll.c). +You can find usage examples in the EFL repository: [reference/c/core/src/core_idler.c](https://git.enlightenment.org/tools/examples.git/tree/reference/c/core/src/core_idler.c) and [reference/c/core/src/core_poll.c](https://git.enlightenment.org/tools/examples.git/tree/reference/c/core/src/core_poll.c). ### Creating and Destroying Timers ### @@ -100,7 +100,7 @@ efl_event_thaw(timer_object); EFL can monitor the system's file descriptor activity through ``Efl.Loop.Fd`` objects and trigger relevant events. -You can find usage examples in the EFL examples repository: [``reference/c/core/src/core_loop.c``](https://git.enlightenment.org/tools/examples.git/tree/reference/c/core/src/core_loop.c) +You can find usage examples in the EFL examples repository: [reference/c/core/src/core_loop.c](https://git.enlightenment.org/tools/examples.git/tree/reference/c/core/src/core_loop.c) ### Creating and Destroying FD Monitors ### @@ -167,7 +167,7 @@ EFL defines three different events you can use to be notified of the above condi Register a callback to be notified of these events using ``efl_event_callback_add()``, as outlined in the [Events Programming Guide](events.md). -You can also view the example in the EFL examples repository: [``reference/c/core/src/core_idler.c``](https://git.enlightenment.org/tools/examples.git/tree/reference/c/core/src/core_idler.c). +You can also view the example in the EFL examples repository: [reference/c/core/src/core_idler.c](https://git.enlightenment.org/tools/examples.git/tree/reference/c/core/src/core_idler.c). ## Polling ## @@ -183,6 +183,8 @@ You can choose from among the predefined polling priorities depending on which e The actual polling period is controlled by EFL and can be changed system-wide. +You can find usage examples in the EFL examples repository: [reference/c/core/src/core_poll.c](https://git.enlightenment.org/tools/examples.git/tree/reference/c/core/src/core_poll.c) + ## Further Reading ## [``Efl.Loop`` API Reference](/develop/api/class/efl/loop) : Detailed documentation for the Loop object --
