Changes in uspace/lib/c/include/async.h [9934f7d:3815efb] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/async.h
r9934f7d r3815efb 55 55 /** Client connection handler 56 56 * 57 * @param callid 58 * 59 * @param call 60 * @param arg 61 * 57 * @param callid ID of incoming call or 0 if connection initiated from 58 * inside using async_connect_to_me() 59 * @param call Incoming call or 0 if connection initiated from inside 60 * @param arg Local argument passed from async_new_connection() or 61 * async_connect_to_me() 62 62 */ 63 63 typedef void (*async_client_conn_t)(ipc_callid_t, ipc_call_t *, void *); … … 99 99 typedef struct { 100 100 /** List of inactive exchanges */ 101 li nk_t exch_list;101 list_t exch_list; 102 102 103 103 /** Exchange management style */
Note:
See TracChangeset
for help on using the changeset viewer.