ecore docs - adjust docs to be explicit about ecore main loops nesting

it seems some people think ecore main loops can nest. they can't. be
explicit in docs.
This commit is contained in:
Carsten Haitzler 2015-10-05 16:04:31 +09:00
parent 5a8632ab36
commit 594dab8078
1 changed files with 4 additions and 0 deletions

View File

@ -248,6 +248,10 @@ EAPI void ecore_main_loop_glib_always_integrate_disable(void);
* handlers, etc. Once everything is done, before entering again on idle state,
* any callback set as @c Idle_Enterer will be called.
*
* This function should be called once only from the same thread that
* initted ecore, eina etc. (ecore_init(), eina_init(), ...) and should never
* be nested. Never call it from within an instance of itself.
*
* Each main loop iteration is done by calling ecore_main_loop_iterate()
* internally.
*