diff options
author | Carsten Haitzler <raster@rasterman.com> | 2011-09-28 11:53:41 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2011-09-28 11:53:41 +0000 |
commit | 42b8dbfb559ef34b173ff693d4c6f72234e57f50 (patch) | |
tree | de0c6da6c770661ee48cc88b6c87bc399e56afa0 /doc/index.doxy | |
parent | 91b1ad42ccd74d739b1068d432957aed53b7a1e2 (diff) |
Document how to use thread with EFL in nice detail for "beginners" who
know already how to use threads (pthread) and then how to use that
with EFL.
SVN revision: 63641
Diffstat (limited to 'doc/index.doxy')
-rw-r--r-- | doc/index.doxy | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/index.doxy b/doc/index.doxy index 83ee765f2..caebcd79f 100644 --- a/doc/index.doxy +++ b/doc/index.doxy | |||
@@ -30,6 +30,9 @@ | |||
30 | * @li @ref widgetslist - These are the widgets you'll compose your UI out of. | 30 | * @li @ref widgetslist - These are the widgets you'll compose your UI out of. |
31 | * @li @ref containerslist - These are the containers in which the widgets will | 31 | * @li @ref containerslist - These are the containers in which the widgets will |
32 | * be laid out. | 32 | * be laid out. |
33 | * | ||
34 | * Also see other generic EFL programming guides: | ||
35 | * @li @ref threading | ||
33 | */ | 36 | */ |
34 | /** | 37 | /** |
35 | * @page widgetslist Widget list | 38 | * @page widgetslist Widget list |
@@ -290,3 +293,23 @@ | |||
290 | * @li @ref infralist - These are modules that deal with Elementary as a whole. | 293 | * @li @ref infralist - These are modules that deal with Elementary as a whole. |
291 | * @li @ref widgetslist - These are the widgets you'll compose your UI out of. | 294 | * @li @ref widgetslist - These are the widgets you'll compose your UI out of. |
292 | */ | 295 | */ |
296 | /** | ||
297 | * @page threading Threading | ||
298 | * | ||
299 | * You may use threads with EFL, but only in specific ways. If you plan on | ||
300 | * using threads it is very important you see the following example guides. | ||
301 | * See the following | ||
302 | * | ||
303 | * @ref efl_thread_1 | ||
304 | * | ||
305 | * @ref efl_thread_2 | ||
306 | * | ||
307 | * @ref efl_thread_3 | ||
308 | * | ||
309 | * @ref efl_thread_4 | ||
310 | * | ||
311 | * @ref efl_thread_5 | ||
312 | * | ||
313 | * @ref efl_thread_6 | ||
314 | * | ||
315 | */ | ||