Changeset 372 for trunk/include/sh_inotify.h
- Timestamp:
- Nov 1, 2011, 12:33:37 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/sh_inotify.h
r371 r372 23 23 #define SH_INOTIFY_INITIALIZER { NULL, NULL, 0, 0 } 24 24 25 #define SH_INOTIFY_FILE 0 26 #define SH_INOTIFY_DIR 1 27 25 28 int sh_inotify_wait_for_change(char * filename, sh_watches * watches, 26 29 int * errnum, int waitsec); … … 29 32 30 33 int sh_inotify_add_watch(char * filename, sh_watches * watches, int * errnum, 31 int class, unsigned long check_mask );34 int class, unsigned long check_mask, int type); 32 35 33 36 int sh_inotify_add_watch_later(char * filename, sh_watches * watches, int * errnum, 34 int class, unsigned long check_mask );37 int class, unsigned long check_mask, int type); 35 38 36 char * sh_inotify_pop_dormant(sh_watches * watches, int * class, unsigned long * check_mask );39 char * sh_inotify_pop_dormant(sh_watches * watches, int * class, unsigned long * check_mask, int * type); 37 40 38 41 void sh_inotify_purge_dormant(sh_watches * watches); … … 41 44 42 45 char * sh_inotify_search_item(sh_watches * watches, int watch, 43 int * class, unsigned long * check_mask );46 int * class, unsigned long * check_mask, int * type); 44 47 ssize_t sh_inotify_read(char * buffer, size_t count); 45 48 ssize_t sh_inotify_read_timeout(char * buffer, size_t count, int timeout);
Note:
See TracChangeset
for help on using the changeset viewer.