Changeset c51a7cd in mainline for uspace/lib/libc/include/fibril_sync.h
- Timestamp:
- 2009-06-14T12:30:27Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 87d3ecf
- Parents:
- 1cbed6b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/fibril_sync.h
r1cbed6b rc51a7cd 75 75 } fibril_condvar_t; 76 76 77 #define FIBRIL_CONDVAR_INITIALIZE(name) \ 78 fibril_condvar_t name = { \ 79 .waiters = { \ 80 .next = &name.waiters, \ 81 .prev = &name.waiters, \ 82 } \ 83 } 84 77 85 extern void fibril_mutex_initialize(fibril_mutex_t *); 78 86 extern void fibril_mutex_lock(fibril_mutex_t *);
Note:
See TracChangeset
for help on using the changeset viewer.