typo and formating

SVN revision: 33611
This commit is contained in:
Peter Wehrfritz 2008-01-25 18:22:51 +00:00
parent 86d36b4563
commit 6a586399c2
1 changed files with 5 additions and 4 deletions

View File

@ -110,16 +110,17 @@ ecore_main_loop_quit(void)
*
* Normally the return value from the @p func is "zero means this handler is
* finished and can be deleted" as is usual for handler callbacks. However,
* if the @p buf_func is supplied, then the return value from the @p func is "non
* zero means the handler should be called again in a tight loop".
* if the @p buf_func is supplied, then the return value from the @p func is
* "non zero means the handler should be called again in a tight loop".
*
* @p buf_func is called during event loop handling to check if data that has
* been read from the file descriptor is in a buffer and is available to
* read. Some systems (notably xlib) handle their own buffering, and would
* otherwise not work with select(). These systems should use a @p buf_func.
* This is a most annoying hack, only ecore_x uses it, so refer to that for
* an example. NOTE - @p func should probably return "one" always if @p buf_func
* is used, to avoid confusion with the other return walue semantics.
* an example. NOTE - @p func should probably return "one" always if
* @p buf_func is used, to avoid confusion with the other return value
* semantics.
*
* @param fd The file descriptor to watch.
* @param flags To watch it for read (@c ECORE_FD_READ) and/or