Changeset 40abf56 in mainline for uspace/lib/c/generic/private/fibril.h
- Timestamp:
- 2018-07-18T19:42:28Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9bde0d5
- Parents:
- 0b05082
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-18 19:05:08)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-07-18 19:42:28)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/private/fibril.h
r0b05082 r40abf56 55 55 atomic_t futex_locks; 56 56 bool is_writer : 1; 57 /* In some places, we use fibril structs that can't be freed. */ 58 bool is_freeable : 1; 57 59 }; 58 60 … … 64 66 } fibril_switch_type_t; 65 67 66 extern fibril_t *fibril_setup(void); 68 extern fibril_t *fibril_alloc(void); 69 extern void fibril_setup(fibril_t *); 67 70 extern void fibril_teardown(fibril_t *f, bool locked); 68 71 extern int fibril_switch(fibril_switch_type_t stype);
Note:
See TracChangeset
for help on using the changeset viewer.