Changes in uspace/lib/c/generic/private/async.h [79ae36dd:47b7006] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/private/async.h
r79ae36dd r47b7006 79 79 } awaiter_t; 80 80 81 /** Message data */82 typedef struct {83 awaiter_t wdata;84 85 /** If reply was received. */86 bool done;87 88 /** Pointer to where the answer data is stored. */89 ipc_call_t *dataptr;90 91 sysarg_t retval;92 } amsg_t;93 94 81 extern void __async_init(void); 95 82 extern void async_insert_timeout(awaiter_t *); 96 extern void reply_received(void *, int, ipc_call_t *);97 83 98 84 #endif
Note:
See TracChangeset
for help on using the changeset viewer.