Subversion Repositories HelenOS-historic

Rev

Rev 1449 | Rev 1463 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1449 Rev 1452
Line 11... Line 11...
11
void async_create_manager(void);
11
void async_create_manager(void);
12
void async_destroy_manager(void);
12
void async_destroy_manager(void);
13
int _async_init(void);
13
int _async_init(void);
14
ipc_callid_t async_get_call(ipc_call_t *data);
14
ipc_callid_t async_get_call(ipc_call_t *data);
15
 
15
 
16
pstid_t async_new_connection(ipc_callid_t callid, ipc_call_t *call,
-
 
17
                 void (*cthread)(ipc_callid_t,ipc_call_t *));
-
 
18
aid_t async_send_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2,
16
aid_t async_send_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2,
19
           ipc_call_t *dataptr);
17
           ipc_call_t *dataptr);
20
void async_wait_for(aid_t amsgid, ipcarg_t *result);
18
void async_wait_for(aid_t amsgid, ipcarg_t *result);
21
int async_wait_timeout(aid_t amsgid, ipcarg_t *retval, suseconds_t timeout);
19
int async_wait_timeout(aid_t amsgid, ipcarg_t *retval, suseconds_t timeout);
22
 
-
 
-
 
20
pstid_t async_new_connection(ipcarg_t in_phone_hash,ipc_callid_t callid,
-
 
21
                 ipc_call_t *call,
-
 
22
                 void (*cthread)(ipc_callid_t,ipc_call_t *));
-
 
23
void async_usleep(suseconds_t timeout);
23
 
24
 
24
/* Should be defined by application */
25
/* Should be defined by application */
25
void client_connection(ipc_callid_t callid, ipc_call_t *call) __attribute__((weak));
26
void client_connection(ipc_callid_t callid, ipc_call_t *call) __attribute__((weak));
-
 
27
void interrupt_received(ipc_call_t *call)  __attribute__((weak));
26
 
28
 
27
#endif
29
#endif