summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkabeer khan <kabeer.khan@samsung.com>2014-11-04 08:53:17 -0500
committerChris Michael <cp.michael@samsung.com>2014-11-04 08:53:33 -0500
commit0abcd5133e4ccb18d1b01f18537b6012268b28f3 (patch)
tree4695b976f97b39142f1ed1a1843c5000071833c8
parent9fa0e6ea19a36f8fdf8e8fb6abb5c05cbf2bfc60 (diff)
downloadefl-0abcd5133e4ccb18d1b01f18537b6012268b28f3.tar.gz
Ecore File: Corrected documentation of ecore_file_monitor_add API
Summary: Added condition that if given path does not exist it returns NULL @fix Signed-off-by: kabeer khan <kabeer.khan@samsung.com> Reviewers: englebass, devilhorns Reviewed By: devilhorns Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D1640
-rw-r--r--src/lib/ecore_file/ecore_file_monitor.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/lib/ecore_file/ecore_file_monitor.c b/src/lib/ecore_file/ecore_file_monitor.c
index df038cdc8e..7b4f625534 100644
--- a/src/lib/ecore_file/ecore_file_monitor.c
+++ b/src/lib/ecore_file/ecore_file_monitor.c
@@ -34,11 +34,12 @@ ecore_file_monitor_shutdown(void)
*
* This function monitors @p path. If @p path is @c NULL, or is an
* empty string, or none of the notify methods (Inotify, Windows
- * notification or polling) is available, the function returns @c NULL.
- * Otherwise, it returns a newly allocated Ecore_File_Monitor object
- * and the monitoring begins. When one of the Ecore_File_Event
- * event is notified, @p func is called and @p data is passed to @p func.
- * Call ecore_file_monitor_del() to stop the monitoring.
+ * notification or polling) is available, or if @p path does not exist
+ * the function returns @c NULL. Otherwise, it returns a newly
+ * allocated Ecore_File_Monitor object and the monitoring begins.
+ * When one of the Ecore_File_Event event is notified, @p func is called
+ * and @p data is passed to @p func.Call ecore_file_monitor_del() to
+ * stop the monitoring.
*/
EAPI Ecore_File_Monitor *
ecore_file_monitor_add(const char *path,