Rev 1702 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1702 | Rev 1780 | ||
---|---|---|---|
Line 37... | Line 37... | ||
37 | 37 | ||
38 | #include <ipc/ipc.h> |
38 | #include <ipc/ipc.h> |
39 | #include <ipc/irq.h> |
39 | #include <ipc/irq.h> |
40 | #include <arch/types.h> |
40 | #include <arch/types.h> |
41 | 41 | ||
42 | __native sys_ipc_call_sync_fast(__native phoneid, __native method, |
42 | unative_t sys_ipc_call_sync_fast(unative_t phoneid, unative_t method, |
43 | __native arg1, ipc_data_t *data); |
43 | unative_t arg1, ipc_data_t *data); |
44 | __native sys_ipc_call_sync(__native phoneid, ipc_data_t *question, |
44 | unative_t sys_ipc_call_sync(unative_t phoneid, ipc_data_t *question, |
45 | ipc_data_t *reply); |
45 | ipc_data_t *reply); |
46 | __native sys_ipc_call_async_fast(__native phoneid, __native method, |
46 | unative_t sys_ipc_call_async_fast(unative_t phoneid, unative_t method, |
47 | __native arg1, __native arg2); |
47 | unative_t arg1, unative_t arg2); |
48 | __native sys_ipc_call_async(__native phoneid, ipc_data_t *data); |
48 | unative_t sys_ipc_call_async(unative_t phoneid, ipc_data_t *data); |
49 | __native sys_ipc_answer_fast(__native callid, __native retval, |
49 | unative_t sys_ipc_answer_fast(unative_t callid, unative_t retval, |
50 | __native arg1, __native arg2); |
50 | unative_t arg1, unative_t arg2); |
51 | __native sys_ipc_answer(__native callid, ipc_data_t *data); |
51 | unative_t sys_ipc_answer(unative_t callid, ipc_data_t *data); |
52 | __native sys_ipc_wait_for_call(ipc_data_t *calldata, __u32 usec, int nonblocking); |
52 | unative_t sys_ipc_wait_for_call(ipc_data_t *calldata, uint32_t usec, int nonblocking); |
53 | __native sys_ipc_forward_fast(__native callid, __native phoneid, |
53 | unative_t sys_ipc_forward_fast(unative_t callid, unative_t phoneid, |
54 | __native method, __native arg1); |
54 | unative_t method, unative_t arg1); |
55 | __native sys_ipc_hangup(int phoneid); |
55 | unative_t sys_ipc_hangup(int phoneid); |
56 | __native sys_ipc_register_irq(int irq, irq_code_t *ucode); |
56 | unative_t sys_ipc_register_irq(int irq, irq_code_t *ucode); |
57 | __native sys_ipc_unregister_irq(int irq); |
57 | unative_t sys_ipc_unregister_irq(int irq); |
58 | 58 | ||
59 | #endif |
59 | #endif |
60 | 60 | ||
61 | /** @} |
61 | /** @} |
62 | */ |
62 | */ |