Changeset 3679f51a in mainline for uspace/lib/c/generic/fibril.c
- Timestamp:
- 2018-06-25T20:41:09Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 95838f1
- Parents:
- d73d992
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-06-25 20:30:35)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-06-25 20:41:09)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/fibril.c
rd73d992 r3679f51a 51 51 #include "private/fibril.h" 52 52 53 #ifdef FUTEX_UPGRADABLE54 #include <rcu.h>55 #endif56 53 57 54 /** … … 78 75 79 76 fibril_t *fibril = fibril_self(); 80 81 #ifdef FUTEX_UPGRADABLE82 rcu_register_fibril();83 #endif84 77 85 78 /* Call the implementing function. */ … … 203 196 break; 204 197 } 205 206 #ifdef FUTEX_UPGRADABLE207 if (stype == FIBRIL_FROM_DEAD) {208 rcu_deregister_fibril();209 }210 #endif211 198 212 199 /* Swap to the next fibril. */
Note:
See TracChangeset
for help on using the changeset viewer.