Changeset 3ede440 in mainline for uspace/lib/c/include/fibril_synch.h
- Timestamp:
- 2019-02-01T22:30:53Z (6 years ago)
- Parents:
- 1a37496
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-01 22:12:04)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-01 22:30:53)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/fibril_synch.h
r1a37496 r3ede440 44 44 typedef struct { 45 45 fibril_owner_info_t oi; /**< Keep this the first thing. */ 46 int counter; 46 int counter; /**< # of fibrils currently waiting for or running in the critical section. */ 47 47 list_t waiters; 48 48 } fibril_mutex_t; … … 53 53 .owned_by = NULL \ 54 54 }, \ 55 .counter = 1, \55 .counter = 0, \ 56 56 .waiters = LIST_INITIALIZER((name).waiters), \ 57 57 }
Note:
See TracChangeset
for help on using the changeset viewer.