Changeset 46eec3b in mainline for uspace/lib/c/include/async.h
- Timestamp:
- 2011-01-25T22:15:36Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8526e585
- Parents:
- c80fdd0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/async.h
rc80fdd0 r46eec3b 44 44 45 45 typedef ipc_callid_t aid_t; 46 47 typedef void *(*async_client_data_ctor_t)(void); 48 typedef void (*async_client_data_dtor_t)(void *); 49 46 50 typedef void (*async_client_conn_t)(ipc_callid_t, ipc_call_t *); 47 51 … … 97 101 extern void async_create_manager(void); 98 102 extern void async_destroy_manager(void); 103 104 extern void async_set_client_data_constructor(async_client_data_ctor_t); 105 extern void async_set_client_data_destructor(async_client_data_dtor_t); 99 106 100 107 extern void async_set_client_connection(async_client_conn_t);
Note:
See TracChangeset
for help on using the changeset viewer.