Changeset 371 for trunk/include
- Timestamp:
- Oct 31, 2011, 9:42:22 PM (13 years ago)
- Location:
- trunk/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/sh_files.h
r367 r371 46 46 int sh_files_hle_reg (const char * str); 47 47 48 /* Check for new files matching configured glob patterns.48 /* Check for new files/dirs matching configured glob patterns. 49 49 */ 50 50 void sh_files_check_globPatterns(); 51 52 /* Check for new files (only) matching configured glob patterns. 53 */ 54 void sh_files_check_globFilePatterns(); 51 55 52 56 /* check the setup -
trunk/include/sh_inotify.h
r367 r371 43 43 int * class, unsigned long * check_mask); 44 44 ssize_t sh_inotify_read(char * buffer, size_t count); 45 ssize_t sh_inotify_read_timeout(char * buffer, size_t count, int timeout); 45 46 int sh_inotify_recheck_watches (sh_watches * watches, sh_watches * save); 46 47 -
trunk/include/sh_pthread.h
r320 r371 34 34 pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, &oldtype); \ 35 35 pthread_cleanup_push(sh_pthread_mutex_unlock, (void*)&(M));\ 36 pthread_mutex_trylock(&(M)); \ 37 executeStack = 1 36 if (0 == pthread_mutex_trylock(&(M))) { \ 37 executeStack = 1 38 39 #define SH_MUTEX_TRYLOCK_UNLOCK(M) \ 40 } \ 41 pthread_cleanup_pop(executeStack); \ 42 pthread_setcanceltype(oldtype, NULL); \ 43 } while (0) 38 44 39 45 #define SH_MUTEX_UNLOCK(M) \
Note:
See TracChangeset
for help on using the changeset viewer.