Changes in uspace/lib/c/include/rcu.h [3679f51a:7473807] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/rcu.h
r3679f51a r7473807 92 92 #define rcu_access(ptr) ACCESS_ONCE(ptr) 93 93 94 typedef enum blocking_mode { 95 BM_BLOCK_FIBRIL, 96 BM_BLOCK_THREAD 97 } blocking_mode_t; 98 94 99 extern void rcu_register_fibril(void); 95 100 extern void rcu_deregister_fibril(void); … … 100 105 extern bool rcu_read_locked(void); 101 106 102 extern void rcu_synchronize(void); 107 #define rcu_synchronize() _rcu_synchronize(BM_BLOCK_FIBRIL) 108 109 extern void _rcu_synchronize(blocking_mode_t); 103 110 104 111 #endif
Note:
See TracChangeset
for help on using the changeset viewer.