source: mainline/libc/include/async.h@ 51c1b003

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 51c1b003 was c042bdd, checked in by Ondrej Palkovsky <ondrap@…>, 19 years ago

Added support for async_wait_timeout.

  • Property mode set to 100644
File size: 792 bytes
Line 
1#ifndef _libc_ASYNC_H_
2#define _libc_ASYNC_H_
3
4#include <ipc/ipc.h>
5#include <psthread.h>
6#include <time.h>
7
8typedef ipc_callid_t aid_t;
9
10int async_manager(void);
11void async_create_manager(void);
12void async_destroy_manager(void);
13int _async_init(void);
14ipc_callid_t async_get_call(ipc_call_t *data);
15
16pstid_t async_new_connection(ipc_callid_t callid, ipc_call_t *call,
17 void (*cthread)(ipc_callid_t,ipc_call_t *));
18aid_t async_send_2(int phoneid, ipcarg_t method, ipcarg_t arg1, ipcarg_t arg2,
19 ipc_call_t *dataptr);
20void async_wait_for(aid_t amsgid, ipcarg_t *result);
21int async_wait_timeout(aid_t amsgid, ipcarg_t *retval, suseconds_t timeout);
22
23
24/* Should be defined by application */
25void client_connection(ipc_callid_t callid, ipc_call_t *call) __attribute__((weak));
26
27#endif
Note: See TracBrowser for help on using the repository browser.