Changes in uspace/lib/c/generic/private/async.h [79ae36dd:5da7199] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/private/async.h
r79ae36dd r5da7199 36 36 #define LIBC_PRIVATE_ASYNC_H_ 37 37 38 #include <async.h> 38 39 #include <adt/list.h> 39 40 #include <fibril.h> 41 #include <fibril_synch.h> 40 42 #include <sys/time.h> 41 43 #include <bool.h> … … 79 81 } awaiter_t; 80 82 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 83 extern void __async_init(void); 95 84 extern void async_insert_timeout(awaiter_t *);
Note:
See TracChangeset
for help on using the changeset viewer.