Changes in uspace/lib/c/include/async.h [d73d992:3b1cc8d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/async.h
rd73d992 r3b1cc8d 108 108 typedef struct async_exch async_exch_t; 109 109 110 extern _Noreturn void async_manager(void); 110 #define async_manager() \ 111 do { \ 112 futex_down(&async_futex); \ 113 fibril_switch(FIBRIL_FROM_DEAD); \ 114 } while (0) 111 115 112 116 #define async_get_call(data) \
Note:
See TracChangeset
for help on using the changeset viewer.