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