| 1 | /*
|
|---|
| 2 | * Copyright (c) 2006 Ondrej Palkovsky
|
|---|
| 3 | * All rights reserved.
|
|---|
| 4 | *
|
|---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
|---|
| 6 | * modification, are permitted provided that the following conditions
|
|---|
| 7 | * are met:
|
|---|
| 8 | *
|
|---|
| 9 | * - Redistributions of source code must retain the above copyright
|
|---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 13 | * documentation and/or other materials provided with the distribution.
|
|---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 15 | * derived from this software without specific prior written permission.
|
|---|
| 16 | *
|
|---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 27 | */
|
|---|
| 28 |
|
|---|
| 29 | /** @addtogroup libcipc
|
|---|
| 30 | * @{
|
|---|
| 31 | */
|
|---|
| 32 | /** @file
|
|---|
| 33 | */
|
|---|
| 34 |
|
|---|
| 35 | #if ((defined(LIBC_ASYNC_H_)) && (!defined(LIBC_ASYNC_C_)))
|
|---|
| 36 | #error Do not intermix low-level IPC interface and async framework
|
|---|
| 37 | #endif
|
|---|
| 38 |
|
|---|
| 39 | #ifndef LIBC_IPC_H_
|
|---|
| 40 | #define LIBC_IPC_H_
|
|---|
| 41 |
|
|---|
| 42 | #include <ipc/common.h>
|
|---|
| 43 | #include <abi/ipc/methods.h>
|
|---|
| 44 | #include <abi/synch.h>
|
|---|
| 45 | #include <abi/proc/task.h>
|
|---|
| 46 | #include <abi/cap.h>
|
|---|
| 47 |
|
|---|
| 48 | extern errno_t ipc_wait(ipc_call_t *, sysarg_t, unsigned int);
|
|---|
| 49 | extern void ipc_poke(void);
|
|---|
| 50 |
|
|---|
| 51 | /*
|
|---|
| 52 | * User-friendly wrappers for ipc_answer_fast() and ipc_answer_slow().
|
|---|
| 53 | * They are in the form of ipc_answer_m(), where m is the number of return
|
|---|
| 54 | * arguments. The macros decide between the fast and the slow version according
|
|---|
| 55 | * to m.
|
|---|
| 56 | */
|
|---|
| 57 |
|
|---|
| 58 | #define ipc_answer_0(chandle, retval) \
|
|---|
| 59 | ipc_answer_fast((chandle), (retval), 0, 0, 0, 0)
|
|---|
| 60 | #define ipc_answer_1(chandle, retval, arg1) \
|
|---|
| 61 | ipc_answer_fast((chandle), (retval), (arg1), 0, 0, 0)
|
|---|
| 62 | #define ipc_answer_2(chandle, retval, arg1, arg2) \
|
|---|
| 63 | ipc_answer_fast((chandle), (retval), (arg1), (arg2), 0, 0)
|
|---|
| 64 | #define ipc_answer_3(chandle, retval, arg1, arg2, arg3) \
|
|---|
| 65 | ipc_answer_fast((chandle), (retval), (arg1), (arg2), (arg3), 0)
|
|---|
| 66 | #define ipc_answer_4(chandle, retval, arg1, arg2, arg3, arg4) \
|
|---|
| 67 | ipc_answer_fast((chandle), (retval), (arg1), (arg2), (arg3), (arg4))
|
|---|
| 68 | #define ipc_answer_5(chandle, retval, arg1, arg2, arg3, arg4, arg5) \
|
|---|
| 69 | ipc_answer_slow((chandle), (retval), (arg1), (arg2), (arg3), (arg4), \
|
|---|
| 70 | (arg5))
|
|---|
| 71 |
|
|---|
| 72 | extern errno_t ipc_answer_fast(cap_call_handle_t, errno_t, sysarg_t, sysarg_t,
|
|---|
| 73 | sysarg_t, sysarg_t);
|
|---|
| 74 | extern errno_t ipc_answer_slow(cap_call_handle_t, errno_t, sysarg_t, sysarg_t,
|
|---|
| 75 | sysarg_t, sysarg_t, sysarg_t);
|
|---|
| 76 |
|
|---|
| 77 | /*
|
|---|
| 78 | * User-friendly wrappers for ipc_call_async_fast() and ipc_call_async_slow().
|
|---|
| 79 | * They are in the form of ipc_call_async_m(), where m is the number of payload
|
|---|
| 80 | * arguments. The macros decide between the fast and the slow version according
|
|---|
| 81 | * to m.
|
|---|
| 82 | */
|
|---|
| 83 |
|
|---|
| 84 | #define ipc_call_async_0(phandle, method, label) \
|
|---|
| 85 | ipc_call_async_fast((phandle), (method), 0, 0, 0, (label))
|
|---|
| 86 | #define ipc_call_async_1(phandle, method, arg1, label) \
|
|---|
| 87 | ipc_call_async_fast((phandle), (method), (arg1), 0, 0, (label))
|
|---|
| 88 | #define ipc_call_async_2(phandle, method, arg1, arg2, label) \
|
|---|
| 89 | ipc_call_async_fast((phandle), (method), (arg1), (arg2), 0, (label))
|
|---|
| 90 | #define ipc_call_async_3(phandle, method, arg1, arg2, arg3, label) \
|
|---|
| 91 | ipc_call_async_fast((phandle), (method), (arg1), (arg2), (arg3), \
|
|---|
| 92 | (label))
|
|---|
| 93 | #define ipc_call_async_4(phandle, method, arg1, arg2, arg3, arg4, label) \
|
|---|
| 94 | ipc_call_async_slow((phandle), (method), (arg1), (arg2), (arg3), \
|
|---|
| 95 | (arg4), 0, (label))
|
|---|
| 96 | #define ipc_call_async_5(phandle, method, arg1, arg2, arg3, arg4, arg5, \
|
|---|
| 97 | label) \
|
|---|
| 98 | ipc_call_async_slow((phandle), (method), (arg1), (arg2), (arg3), \
|
|---|
| 99 | (arg4), (arg5), (label))
|
|---|
| 100 |
|
|---|
| 101 | extern errno_t ipc_call_async_fast(cap_phone_handle_t, sysarg_t, sysarg_t,
|
|---|
| 102 | sysarg_t, sysarg_t, void *);
|
|---|
| 103 | extern errno_t ipc_call_async_slow(cap_phone_handle_t, sysarg_t, sysarg_t,
|
|---|
| 104 | sysarg_t, sysarg_t, sysarg_t, sysarg_t, void *);
|
|---|
| 105 |
|
|---|
| 106 | extern errno_t ipc_hangup(cap_phone_handle_t);
|
|---|
| 107 |
|
|---|
| 108 | extern errno_t ipc_forward_fast(cap_call_handle_t, cap_phone_handle_t, sysarg_t,
|
|---|
| 109 | sysarg_t, sysarg_t, unsigned int);
|
|---|
| 110 | extern errno_t ipc_forward_slow(cap_call_handle_t, cap_phone_handle_t, sysarg_t,
|
|---|
| 111 | sysarg_t, sysarg_t, sysarg_t, sysarg_t, sysarg_t, unsigned int);
|
|---|
| 112 |
|
|---|
| 113 | extern errno_t ipc_connect_kbox(task_id_t, cap_phone_handle_t *);
|
|---|
| 114 |
|
|---|
| 115 | #endif
|
|---|
| 116 |
|
|---|
| 117 | /** @}
|
|---|
| 118 | */
|
|---|