Changeset e71a61d in mainline for kernel/generic/include/synch/condvar.h
- Timestamp:
- 2007-01-22T14:45:07Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 51baa8a
- Parents:
- 726e1043
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/synch/condvar.h
r726e1043 re71a61d 38 38 #include <arch/types.h> 39 39 #include <synch/waitq.h> 40 #include < typedefs.h>40 #include <synch/mutex.h> 41 41 #include <synch/synch.h> 42 42 43 struct condvar{43 typedef struct { 44 44 waitq_t wq; 45 } ;45 } condvar_t; 46 46 47 47 #define condvar_wait(cv,mtx) \
Note:
See TracChangeset
for help on using the changeset viewer.