Changeset 80bcaed in mainline for kernel/generic/include/synch/condvar.h
- Timestamp:
- 2007-02-03T13:22:24Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f619ec11
- Parents:
- fa8e7d2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/synch/condvar.h
rfa8e7d2 r80bcaed 45 45 } condvar_t; 46 46 47 #define condvar_wait(cv, mtx) \48 _condvar_wait_timeout((cv), (mtx),SYNCH_NO_TIMEOUT,SYNCH_FLAGS_NONE)49 #define condvar_wait_timeout(cv, mtx,usec) \50 _condvar_wait_timeout((cv), (mtx),(usec),SYNCH_FLAGS_NONE)47 #define condvar_wait(cv, mtx) \ 48 _condvar_wait_timeout((cv), (mtx), SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE) 49 #define condvar_wait_timeout(cv, mtx, usec) \ 50 _condvar_wait_timeout((cv), (mtx), (usec), SYNCH_FLAGS_NONE) 51 51 52 52 extern void condvar_initialize(condvar_t *cv); 53 53 extern void condvar_signal(condvar_t *cv); 54 54 extern void condvar_broadcast(condvar_t *cv); 55 extern int _condvar_wait_timeout(condvar_t *cv, mutex_t *mtx, uint32_t usec, int flags); 55 extern int _condvar_wait_timeout(condvar_t *cv, mutex_t *mtx, uint32_t usec, 56 int flags); 56 57 57 58 #endif
Note:
See TracChangeset
for help on using the changeset viewer.