Rev 3760 | Rev 4324 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3760 | Rev 4002 | ||
---|---|---|---|
Line 74... | Line 74... | ||
74 | async_send_fast((phoneid), (method), (arg1), (arg2), (arg3), (arg4), \ |
74 | async_send_fast((phoneid), (method), (arg1), (arg2), (arg3), (arg4), \ |
75 | (dataptr)) |
75 | (dataptr)) |
76 | #define async_send_5(phoneid, method, arg1, arg2, arg3, arg4, arg5, dataptr) \ |
76 | #define async_send_5(phoneid, method, arg1, arg2, arg3, arg4, arg5, dataptr) \ |
77 | async_send_slow((phoneid), (method), (arg1), (arg2), (arg3), (arg4), \ |
77 | async_send_slow((phoneid), (method), (arg1), (arg2), (arg3), (arg4), \ |
78 | (arg5), (dataptr)) |
78 | (arg5), (dataptr)) |
79 | 79 | ||
80 | extern aid_t async_send_fast(int phoneid, ipcarg_t method, ipcarg_t arg1, |
80 | extern aid_t async_send_fast(int phoneid, ipcarg_t method, ipcarg_t arg1, |
81 | ipcarg_t arg2, ipcarg_t arg3, ipcarg_t arg4, ipc_call_t *dataptr); |
81 | ipcarg_t arg2, ipcarg_t arg3, ipcarg_t arg4, ipc_call_t *dataptr); |
82 | extern aid_t async_send_slow(int phoneid, ipcarg_t method, ipcarg_t arg1, |
82 | extern aid_t async_send_slow(int phoneid, ipcarg_t method, ipcarg_t arg1, |
83 | ipcarg_t arg2, ipcarg_t arg3, ipcarg_t arg4, ipcarg_t arg5, |
83 | ipcarg_t arg2, ipcarg_t arg3, ipcarg_t arg4, ipcarg_t arg5, |
84 | ipc_call_t *dataptr); |
84 | ipc_call_t *dataptr); |
85 | extern void async_wait_for(aid_t amsgid, ipcarg_t *result); |
85 | extern void async_wait_for(aid_t amsgid, ipcarg_t *result); |
86 | extern int async_wait_timeout(aid_t amsgid, ipcarg_t *retval, |
86 | extern int async_wait_timeout(aid_t amsgid, ipcarg_t *retval, |
87 | suseconds_t timeout); |
87 | suseconds_t timeout); |
88 | 88 | ||
89 | fid_t async_new_connection(ipcarg_t in_phone_hash,ipc_callid_t callid, |
89 | fid_t async_new_connection(ipcarg_t in_phone_hash, ipc_callid_t callid, |
90 | ipc_call_t *call, void (*cthread)(ipc_callid_t,ipc_call_t *)); |
90 | ipc_call_t *call, void (*cthread)(ipc_callid_t, ipc_call_t *)); |
91 | void async_usleep(suseconds_t timeout); |
91 | void async_usleep(suseconds_t timeout); |
92 | void async_create_manager(void); |
92 | void async_create_manager(void); |
93 | void async_destroy_manager(void); |
93 | void async_destroy_manager(void); |
94 | int _async_init(void); |
94 | int _async_init(void); |
95 | 95 |