Changeset fb0ec570 in mainline for uspace/lib/c/include/fibril_synch.h
- Timestamp:
- 2018-06-22T16:32:49Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4e6a610
- Parents:
- a8b0c5d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/fibril_synch.h
ra8b0c5d 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.