Changes in uspace/lib/c/include/fibril_synch.h [a55d76b1:fb0ec570] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/fibril_synch.h
ra55d76b1 rfb0ec570 67 67 typedef struct { 68 68 fibril_owner_info_t oi; /**< Keep this the first thing. */ 69 unsigned writers;70 unsigned readers;69 unsigned int writers; 70 unsigned int readers; 71 71 list_t waiters; 72 72 } fibril_rwlock_t; … … 145 145 /** A counting semaphore for fibrils. */ 146 146 typedef struct { 147 long count;147 long int count; 148 148 list_t waiters; 149 149 } fibril_semaphore_t;
Note:
See TracChangeset
for help on using the changeset viewer.