Changeset b688fd8 in mainline for uspace/lib/c/include/async.h
- Timestamp:
- 2015-08-17T18:54:56Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- abf2dfd
- Parents:
- b10460a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/async.h
rb10460a rb688fd8 54 54 typedef void (*async_client_data_dtor_t)(void *); 55 55 56 /** Client connection handler56 /** Port connection handler 57 57 * 58 58 * @param callid ID of incoming call or 0 if connection initiated from … … 62 62 * async_connect_to_me() 63 63 */ 64 typedef void (*async_ client_conn_t)(ipc_callid_t, ipc_call_t *, void *);64 typedef void (*async_port_handler_t)(ipc_callid_t, ipc_call_t *, void *); 65 65 66 66 /** Notification handler */ … … 148 148 149 149 extern fid_t async_new_connection(task_id_t, sysarg_t, ipc_callid_t, 150 ipc_call_t *, async_ client_conn_t, void *);150 ipc_call_t *, async_port_handler_t, void *); 151 151 152 152 extern void async_usleep(suseconds_t); … … 160 160 extern void async_put_client_data_by_id(task_id_t); 161 161 162 extern void async_set_ client_connection(async_client_conn_t);162 extern void async_set_fallback_port_handler(async_port_handler_t, void *); 163 163 extern void async_set_notification_handler_stack_size(size_t); 164 164 … … 348 348 349 349 extern int async_connect_to_me(async_exch_t *, sysarg_t, sysarg_t, sysarg_t, 350 async_ client_conn_t, void *);350 async_port_handler_t, void *); 351 351 352 352 extern int async_hangup(async_sess_t *);
Note:
See TracChangeset
for help on using the changeset viewer.