Changeset d742db21 in mainline for uspace/lib/c/include
- Timestamp:
- 2018-08-01T18:15:53Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6340b4d2
- Parents:
- 6bb136b2
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-30 21:07:49)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-08-01 18:15:53)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/fibril_synch.h
r6bb136b2 rd742db21 186 186 long int count; 187 187 list_t waiters; 188 bool closed; 188 189 } fibril_semaphore_t; 189 190 … … 241 242 extern void fibril_semaphore_up(fibril_semaphore_t *); 242 243 extern void fibril_semaphore_down(fibril_semaphore_t *); 244 extern errno_t fibril_semaphore_down_timeout(fibril_semaphore_t *, suseconds_t); 245 extern void fibril_semaphore_close(fibril_semaphore_t *); 243 246 244 247 #endif
Note:
See TracChangeset
for help on using the changeset viewer.