[c594489] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2006 Ondrej Palkovsky
|
---|
[c594489] | 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 |
|
---|
[fadd381] | 29 | /** @addtogroup libc
|
---|
[b2951e2] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
[64d2b10] | 35 | #if ((defined(LIBC_IPC_H_)) && (!defined(LIBC_ASYNC_C_)))
|
---|
| 36 | #error Do not intermix low-level IPC interface and async framework
|
---|
| 37 | #endif
|
---|
| 38 |
|
---|
[fadd381] | 39 | #ifndef LIBC_ASYNC_H_
|
---|
| 40 | #define LIBC_ASYNC_H_
|
---|
[630c3a9] | 41 |
|
---|
[64d2b10] | 42 | #include <ipc/common.h>
|
---|
[bc1f1c2] | 43 | #include <fibril.h>
|
---|
[79ae36dd] | 44 | #include <fibril_synch.h>
|
---|
[f25b73d6] | 45 | #include <sys/time.h>
|
---|
[fc42b28] | 46 | #include <atomic.h>
|
---|
[0cc4313] | 47 | #include <bool.h>
|
---|
[64d2b10] | 48 | #include <task.h>
|
---|
[630c3a9] | 49 |
|
---|
[01ff41c] | 50 | typedef ipc_callid_t aid_t;
|
---|
[46eec3b] | 51 |
|
---|
| 52 | typedef void *(*async_client_data_ctor_t)(void);
|
---|
| 53 | typedef void (*async_client_data_dtor_t)(void *);
|
---|
| 54 |
|
---|
[9934f7d] | 55 | /** Client connection handler
|
---|
| 56 | *
|
---|
[3815efb] | 57 | * @param callid ID of incoming call or 0 if connection initiated from
|
---|
| 58 | * inside using async_connect_to_me()
|
---|
| 59 | * @param call Incoming call or 0 if connection initiated from inside
|
---|
| 60 | * @param arg Local argument passed from async_new_connection() or
|
---|
| 61 | * async_connect_to_me()
|
---|
[9934f7d] | 62 | */
|
---|
| 63 | typedef void (*async_client_conn_t)(ipc_callid_t, ipc_call_t *, void *);
|
---|
| 64 |
|
---|
| 65 | /** Interrupt handler */
|
---|
| 66 | typedef void (*async_interrupt_handler_t)(ipc_callid_t, ipc_call_t *);
|
---|
[9db9b10] | 67 |
|
---|
[79ae36dd] | 68 | /** Exchange management style
|
---|
| 69 | *
|
---|
| 70 | */
|
---|
| 71 | typedef enum {
|
---|
| 72 | /** No explicit exchange management
|
---|
| 73 | *
|
---|
| 74 | * Suitable for protocols which use a single
|
---|
| 75 | * IPC message per exchange only.
|
---|
| 76 | *
|
---|
| 77 | */
|
---|
| 78 | EXCHANGE_ATOMIC = 0,
|
---|
| 79 |
|
---|
| 80 | /** Exchange management via phone cloning
|
---|
| 81 | *
|
---|
| 82 | * Suitable for servers which support client
|
---|
| 83 | * data tracking by task hashes and do not
|
---|
| 84 | * mind cloned phones.
|
---|
| 85 | *
|
---|
| 86 | */
|
---|
| 87 | EXCHANGE_PARALLEL,
|
---|
| 88 |
|
---|
| 89 | /** Exchange management via mutual exclusion
|
---|
| 90 | *
|
---|
| 91 | * Suitable for any kind of client/server communication,
|
---|
| 92 | * but can limit parallelism.
|
---|
| 93 | *
|
---|
| 94 | */
|
---|
| 95 | EXCHANGE_SERIALIZE
|
---|
| 96 | } exch_mgmt_t;
|
---|
| 97 |
|
---|
| 98 | /** Session data */
|
---|
| 99 | typedef struct {
|
---|
| 100 | /** List of inactive exchanges */
|
---|
[b72efe8] | 101 | list_t exch_list;
|
---|
[79ae36dd] | 102 |
|
---|
| 103 | /** Exchange management style */
|
---|
| 104 | exch_mgmt_t mgmt;
|
---|
| 105 |
|
---|
| 106 | /** Session identification */
|
---|
| 107 | int phone;
|
---|
| 108 |
|
---|
| 109 | /** First clone connection argument */
|
---|
| 110 | sysarg_t arg1;
|
---|
| 111 |
|
---|
| 112 | /** Second clone connection argument */
|
---|
| 113 | sysarg_t arg2;
|
---|
| 114 |
|
---|
| 115 | /** Third clone connection argument */
|
---|
| 116 | sysarg_t arg3;
|
---|
| 117 |
|
---|
| 118 | /** Exchange mutex */
|
---|
| 119 | fibril_mutex_t mutex;
|
---|
| 120 |
|
---|
| 121 | /** Number of opened exchanges */
|
---|
| 122 | atomic_t refcnt;
|
---|
| 123 | } async_sess_t;
|
---|
| 124 |
|
---|
| 125 | /** Exchange data */
|
---|
| 126 | typedef struct {
|
---|
| 127 | /** Link into list of inactive exchanges */
|
---|
| 128 | link_t sess_link;
|
---|
| 129 |
|
---|
| 130 | /** Link into global list of inactive exchanges */
|
---|
| 131 | link_t global_link;
|
---|
| 132 |
|
---|
| 133 | /** Session pointer */
|
---|
| 134 | async_sess_t *sess;
|
---|
| 135 |
|
---|
| 136 | /** Exchange identification */
|
---|
| 137 | int phone;
|
---|
| 138 | } async_exch_t;
|
---|
| 139 |
|
---|
[8619f25] | 140 | extern atomic_t threads_in_ipc_wait;
|
---|
| 141 |
|
---|
[47b7006] | 142 | #define async_manager() \
|
---|
| 143 | fibril_switch(FIBRIL_TO_MANAGER)
|
---|
[9db9b10] | 144 |
|
---|
[47b7006] | 145 | #define async_get_call(data) \
|
---|
| 146 | async_get_call_timeout(data, 0)
|
---|
[440cff5] | 147 |
|
---|
[47b7006] | 148 | extern ipc_callid_t async_get_call_timeout(ipc_call_t *, suseconds_t);
|
---|
[db24058] | 149 |
|
---|
[0cc4313] | 150 | /*
|
---|
| 151 | * User-friendly wrappers for async_send_fast() and async_send_slow(). The
|
---|
| 152 | * macros are in the form async_send_m(), where m denotes the number of payload
|
---|
[79ae36dd] | 153 | * arguments. Each macros chooses between the fast and the slow version based
|
---|
[0cc4313] | 154 | * on m.
|
---|
[440cff5] | 155 | */
|
---|
| 156 |
|
---|
[79ae36dd] | 157 | #define async_send_0(exch, method, dataptr) \
|
---|
| 158 | async_send_fast(exch, method, 0, 0, 0, 0, dataptr)
|
---|
| 159 | #define async_send_1(exch, method, arg1, dataptr) \
|
---|
| 160 | async_send_fast(exch, method, arg1, 0, 0, 0, dataptr)
|
---|
| 161 | #define async_send_2(exch, method, arg1, arg2, dataptr) \
|
---|
| 162 | async_send_fast(exch, method, arg1, arg2, 0, 0, dataptr)
|
---|
| 163 | #define async_send_3(exch, method, arg1, arg2, arg3, dataptr) \
|
---|
| 164 | async_send_fast(exch, method, arg1, arg2, arg3, 0, dataptr)
|
---|
| 165 | #define async_send_4(exch, method, arg1, arg2, arg3, arg4, dataptr) \
|
---|
| 166 | async_send_fast(exch, method, arg1, arg2, arg3, arg4, dataptr)
|
---|
| 167 | #define async_send_5(exch, method, arg1, arg2, arg3, arg4, arg5, dataptr) \
|
---|
| 168 | async_send_slow(exch, method, arg1, arg2, arg3, arg4, arg5, dataptr)
|
---|
| 169 |
|
---|
| 170 | extern aid_t async_send_fast(async_exch_t *, sysarg_t, sysarg_t, sysarg_t,
|
---|
[11bb813] | 171 | sysarg_t, sysarg_t, ipc_call_t *);
|
---|
[79ae36dd] | 172 | extern aid_t async_send_slow(async_exch_t *, sysarg_t, sysarg_t, sysarg_t,
|
---|
| 173 | sysarg_t, sysarg_t, sysarg_t, ipc_call_t *);
|
---|
| 174 |
|
---|
[11bb813] | 175 | extern void async_wait_for(aid_t, sysarg_t *);
|
---|
| 176 | extern int async_wait_timeout(aid_t, sysarg_t *, suseconds_t);
|
---|
[440cff5] | 177 |
|
---|
[3c22f70] | 178 | extern fid_t async_new_connection(sysarg_t, sysarg_t, ipc_callid_t,
|
---|
[9934f7d] | 179 | ipc_call_t *, async_client_conn_t, void *);
|
---|
[79ae36dd] | 180 |
|
---|
[11bb813] | 181 | extern void async_usleep(suseconds_t);
|
---|
[9db9b10] | 182 | extern void async_create_manager(void);
|
---|
| 183 | extern void async_destroy_manager(void);
|
---|
[01ff41c] | 184 |
|
---|
[46eec3b] | 185 | extern void async_set_client_data_constructor(async_client_data_ctor_t);
|
---|
| 186 | extern void async_set_client_data_destructor(async_client_data_dtor_t);
|
---|
[79ae36dd] | 187 | extern void *async_get_client_data(void);
|
---|
[23882034] | 188 |
|
---|
[11bb813] | 189 | extern void async_set_client_connection(async_client_conn_t);
|
---|
[9934f7d] | 190 | extern void async_set_interrupt_received(async_interrupt_handler_t);
|
---|
[0cc4313] | 191 |
|
---|
[64d2b10] | 192 | /*
|
---|
| 193 | * Wrappers for simple communication.
|
---|
| 194 | */
|
---|
| 195 |
|
---|
[79ae36dd] | 196 | extern void async_msg_0(async_exch_t *, sysarg_t);
|
---|
| 197 | extern void async_msg_1(async_exch_t *, sysarg_t, sysarg_t);
|
---|
| 198 | extern void async_msg_2(async_exch_t *, sysarg_t, sysarg_t, sysarg_t);
|
---|
| 199 | extern void async_msg_3(async_exch_t *, sysarg_t, sysarg_t, sysarg_t, sysarg_t);
|
---|
| 200 | extern void async_msg_4(async_exch_t *, sysarg_t, sysarg_t, sysarg_t, sysarg_t,
|
---|
[64d2b10] | 201 | sysarg_t);
|
---|
[79ae36dd] | 202 | extern void async_msg_5(async_exch_t *, sysarg_t, sysarg_t, sysarg_t, sysarg_t,
|
---|
| 203 | sysarg_t, sysarg_t);
|
---|
[64d2b10] | 204 |
|
---|
| 205 | /*
|
---|
| 206 | * Wrappers for answer routines.
|
---|
| 207 | */
|
---|
| 208 |
|
---|
| 209 | extern sysarg_t async_answer_0(ipc_callid_t, sysarg_t);
|
---|
| 210 | extern sysarg_t async_answer_1(ipc_callid_t, sysarg_t, sysarg_t);
|
---|
| 211 | extern sysarg_t async_answer_2(ipc_callid_t, sysarg_t, sysarg_t, sysarg_t);
|
---|
| 212 | extern sysarg_t async_answer_3(ipc_callid_t, sysarg_t, sysarg_t, sysarg_t,
|
---|
| 213 | sysarg_t);
|
---|
| 214 | extern sysarg_t async_answer_4(ipc_callid_t, sysarg_t, sysarg_t, sysarg_t,
|
---|
| 215 | sysarg_t, sysarg_t);
|
---|
| 216 | extern sysarg_t async_answer_5(ipc_callid_t, sysarg_t, sysarg_t, sysarg_t,
|
---|
| 217 | sysarg_t, sysarg_t, sysarg_t);
|
---|
| 218 |
|
---|
| 219 | /*
|
---|
| 220 | * Wrappers for forwarding routines.
|
---|
| 221 | */
|
---|
| 222 |
|
---|
[79ae36dd] | 223 | extern int async_forward_fast(ipc_callid_t, async_exch_t *, sysarg_t, sysarg_t,
|
---|
| 224 | sysarg_t, unsigned int);
|
---|
| 225 | extern int async_forward_slow(ipc_callid_t, async_exch_t *, sysarg_t, sysarg_t,
|
---|
| 226 | sysarg_t, sysarg_t, sysarg_t, sysarg_t, unsigned int);
|
---|
[0cc4313] | 227 |
|
---|
| 228 | /*
|
---|
| 229 | * User-friendly wrappers for async_req_fast() and async_req_slow(). The macros
|
---|
| 230 | * are in the form async_req_m_n(), where m is the number of payload arguments
|
---|
[6b21292] | 231 | * and n is the number of return arguments. The macros decide between the fast
|
---|
[0cc4313] | 232 | * and slow verion based on m.
|
---|
| 233 | */
|
---|
[64d2b10] | 234 |
|
---|
[79ae36dd] | 235 | #define async_req_0_0(exch, method) \
|
---|
| 236 | async_req_fast(exch, method, 0, 0, 0, 0, NULL, NULL, NULL, NULL, NULL)
|
---|
| 237 | #define async_req_0_1(exch, method, r1) \
|
---|
| 238 | async_req_fast(exch, method, 0, 0, 0, 0, r1, NULL, NULL, NULL, NULL)
|
---|
| 239 | #define async_req_0_2(exch, method, r1, r2) \
|
---|
| 240 | async_req_fast(exch, method, 0, 0, 0, 0, r1, r2, NULL, NULL, NULL)
|
---|
| 241 | #define async_req_0_3(exch, method, r1, r2, r3) \
|
---|
| 242 | async_req_fast(exch, method, 0, 0, 0, 0, r1, r2, r3, NULL, NULL)
|
---|
| 243 | #define async_req_0_4(exch, method, r1, r2, r3, r4) \
|
---|
| 244 | async_req_fast(exch, method, 0, 0, 0, 0, r1, r2, r3, r4, NULL)
|
---|
| 245 | #define async_req_0_5(exch, method, r1, r2, r3, r4, r5) \
|
---|
| 246 | async_req_fast(exch, method, 0, 0, 0, 0, r1, r2, r3, r4, r5)
|
---|
| 247 |
|
---|
| 248 | #define async_req_1_0(exch, method, arg1) \
|
---|
| 249 | async_req_fast(exch, method, arg1, 0, 0, 0, NULL, NULL, NULL, NULL, \
|
---|
| 250 | NULL)
|
---|
| 251 | #define async_req_1_1(exch, method, arg1, rc1) \
|
---|
| 252 | async_req_fast(exch, method, arg1, 0, 0, 0, rc1, NULL, NULL, NULL, \
|
---|
| 253 | NULL)
|
---|
| 254 | #define async_req_1_2(exch, method, arg1, rc1, rc2) \
|
---|
| 255 | async_req_fast(exch, method, arg1, 0, 0, 0, rc1, rc2, NULL, NULL, \
|
---|
| 256 | NULL)
|
---|
| 257 | #define async_req_1_3(exch, method, arg1, rc1, rc2, rc3) \
|
---|
| 258 | async_req_fast(exch, method, arg1, 0, 0, 0, rc1, rc2, rc3, NULL, \
|
---|
[9db9b10] | 259 | NULL)
|
---|
[79ae36dd] | 260 | #define async_req_1_4(exch, method, arg1, rc1, rc2, rc3, rc4) \
|
---|
| 261 | async_req_fast(exch, method, arg1, 0, 0, 0, rc1, rc2, rc3, rc4, \
|
---|
[9db9b10] | 262 | NULL)
|
---|
[79ae36dd] | 263 | #define async_req_1_5(exch, method, arg1, rc1, rc2, rc3, rc4, rc5) \
|
---|
| 264 | async_req_fast(exch, method, arg1, 0, 0, 0, rc1, rc2, rc3, rc4, \
|
---|
| 265 | rc5)
|
---|
| 266 |
|
---|
| 267 | #define async_req_2_0(exch, method, arg1, arg2) \
|
---|
| 268 | async_req_fast(exch, method, arg1, arg2, 0, 0, NULL, NULL, NULL, \
|
---|
| 269 | NULL, NULL)
|
---|
| 270 | #define async_req_2_1(exch, method, arg1, arg2, rc1) \
|
---|
| 271 | async_req_fast(exch, method, arg1, arg2, 0, 0, rc1, NULL, NULL, \
|
---|
| 272 | NULL, NULL)
|
---|
| 273 | #define async_req_2_2(exch, method, arg1, arg2, rc1, rc2) \
|
---|
| 274 | async_req_fast(exch, method, arg1, arg2, 0, 0, rc1, rc2, NULL, NULL, \
|
---|
[9db9b10] | 275 | NULL)
|
---|
[79ae36dd] | 276 | #define async_req_2_3(exch, method, arg1, arg2, rc1, rc2, rc3) \
|
---|
| 277 | async_req_fast(exch, method, arg1, arg2, 0, 0, rc1, rc2, rc3, NULL, \
|
---|
[9db9b10] | 278 | NULL)
|
---|
[79ae36dd] | 279 | #define async_req_2_4(exch, method, arg1, arg2, rc1, rc2, rc3, rc4) \
|
---|
| 280 | async_req_fast(exch, method, arg1, arg2, 0, 0, rc1, rc2, rc3, rc4, \
|
---|
[9db9b10] | 281 | NULL)
|
---|
[79ae36dd] | 282 | #define async_req_2_5(exch, method, arg1, arg2, rc1, rc2, rc3, rc4, rc5) \
|
---|
| 283 | async_req_fast(exch, method, arg1, arg2, 0, 0, rc1, rc2, rc3, rc4, \
|
---|
| 284 | rc5)
|
---|
| 285 |
|
---|
| 286 | #define async_req_3_0(exch, method, arg1, arg2, arg3) \
|
---|
| 287 | async_req_fast(exch, method, arg1, arg2, arg3, 0, NULL, NULL, NULL, \
|
---|
[9db9b10] | 288 | NULL, NULL)
|
---|
[79ae36dd] | 289 | #define async_req_3_1(exch, method, arg1, arg2, arg3, rc1) \
|
---|
| 290 | async_req_fast(exch, method, arg1, arg2, arg3, 0, rc1, NULL, NULL, \
|
---|
[9db9b10] | 291 | NULL, NULL)
|
---|
[79ae36dd] | 292 | #define async_req_3_2(exch, method, arg1, arg2, arg3, rc1, rc2) \
|
---|
| 293 | async_req_fast(exch, method, arg1, arg2, arg3, 0, rc1, rc2, NULL, \
|
---|
[9db9b10] | 294 | NULL, NULL)
|
---|
[79ae36dd] | 295 | #define async_req_3_3(exch, method, arg1, arg2, arg3, rc1, rc2, rc3) \
|
---|
| 296 | async_req_fast(exch, method, arg1, arg2, arg3, 0, rc1, rc2, rc3, \
|
---|
[9db9b10] | 297 | NULL, NULL)
|
---|
[79ae36dd] | 298 | #define async_req_3_4(exch, method, arg1, arg2, arg3, rc1, rc2, rc3, rc4) \
|
---|
| 299 | async_req_fast(exch, method, arg1, arg2, arg3, 0, rc1, rc2, rc3, \
|
---|
| 300 | rc4, NULL)
|
---|
| 301 | #define async_req_3_5(exch, method, arg1, arg2, arg3, rc1, rc2, rc3, rc4, \
|
---|
| 302 | rc5) \
|
---|
| 303 | async_req_fast(exch, method, arg1, arg2, arg3, 0, rc1, rc2, rc3, \
|
---|
| 304 | rc4, rc5)
|
---|
| 305 |
|
---|
| 306 | #define async_req_4_0(exch, method, arg1, arg2, arg3, arg4) \
|
---|
| 307 | async_req_fast(exch, method, arg1, arg2, arg3, arg4, NULL, NULL, \
|
---|
[9db9b10] | 308 | NULL, NULL, NULL)
|
---|
[79ae36dd] | 309 | #define async_req_4_1(exch, method, arg1, arg2, arg3, arg4, rc1) \
|
---|
| 310 | async_req_fast(exch, method, arg1, arg2, arg3, arg4, rc1, NULL, \
|
---|
[9db9b10] | 311 | NULL, NULL, NULL)
|
---|
[79ae36dd] | 312 | #define async_req_4_2(exch, method, arg1, arg2, arg3, arg4, rc1, rc2) \
|
---|
| 313 | async_req_fast(exch, method, arg1, arg2, arg3, arg4, rc1, rc2, NULL, \
|
---|
| 314 | NULL, NULL)
|
---|
| 315 | #define async_req_4_3(exch, method, arg1, arg2, arg3, arg4, rc1, rc2, rc3) \
|
---|
| 316 | async_req_fast(exch, method, arg1, arg2, arg3, arg4, rc1, rc2, rc3, \
|
---|
| 317 | NULL, NULL)
|
---|
| 318 | #define async_req_4_4(exch, method, arg1, arg2, arg3, arg4, rc1, rc2, rc3, \
|
---|
[0cc4313] | 319 | rc4) \
|
---|
[79ae36dd] | 320 | async_req_fast(exch, method, arg1, arg2, arg3, arg4, rc1, rc2, rc3, \
|
---|
| 321 | rc4, NULL)
|
---|
| 322 | #define async_req_4_5(exch, method, arg1, arg2, arg3, arg4, rc1, rc2, rc3, \
|
---|
[0cc4313] | 323 | rc4, rc5) \
|
---|
[79ae36dd] | 324 | async_req_fast(exch, method, arg1, arg2, arg3, arg4, rc1, rc2, rc3, \
|
---|
| 325 | rc4, rc5)
|
---|
| 326 |
|
---|
| 327 | #define async_req_5_0(exch, method, arg1, arg2, arg3, arg4, arg5) \
|
---|
| 328 | async_req_slow(exch, method, arg1, arg2, arg3, arg4, arg5, NULL, \
|
---|
| 329 | NULL, NULL, NULL, NULL)
|
---|
| 330 | #define async_req_5_1(exch, method, arg1, arg2, arg3, arg4, arg5, rc1) \
|
---|
| 331 | async_req_slow(exch, method, arg1, arg2, arg3, arg4, arg5, rc1, \
|
---|
| 332 | NULL, NULL, NULL, NULL)
|
---|
| 333 | #define async_req_5_2(exch, method, arg1, arg2, arg3, arg4, arg5, rc1, rc2) \
|
---|
| 334 | async_req_slow(exch, method, arg1, arg2, arg3, arg4, arg5, rc1, rc2, \
|
---|
| 335 | NULL, NULL, NULL)
|
---|
| 336 | #define async_req_5_3(exch, method, arg1, arg2, arg3, arg4, arg5, rc1, rc2, \
|
---|
[0cc4313] | 337 | rc3) \
|
---|
[79ae36dd] | 338 | async_req_slow(exch, method, arg1, arg2, arg3, arg4, arg5, rc1, rc2, \
|
---|
| 339 | rc3, NULL, NULL)
|
---|
| 340 | #define async_req_5_4(exch, method, arg1, arg2, arg3, arg4, arg5, rc1, rc2, \
|
---|
[0cc4313] | 341 | rc3, rc4) \
|
---|
[79ae36dd] | 342 | async_req_slow(exch, method, arg1, arg2, arg3, arg4, arg5, rc1, rc2, \
|
---|
| 343 | rc3, rc4, NULL)
|
---|
| 344 | #define async_req_5_5(exch, method, arg1, arg2, arg3, arg4, arg5, rc1, rc2, \
|
---|
[0cc4313] | 345 | rc3, rc4, rc5) \
|
---|
[79ae36dd] | 346 | async_req_slow(exch, method, arg1, arg2, arg3, arg4, arg5, rc1, rc2, \
|
---|
| 347 | rc3, rc4, rc5)
|
---|
[fc42b28] | 348 |
|
---|
[79ae36dd] | 349 | extern sysarg_t async_req_fast(async_exch_t *, sysarg_t, sysarg_t, sysarg_t,
|
---|
[11bb813] | 350 | sysarg_t, sysarg_t, sysarg_t *, sysarg_t *, sysarg_t *, sysarg_t *,
|
---|
| 351 | sysarg_t *);
|
---|
[79ae36dd] | 352 | extern sysarg_t async_req_slow(async_exch_t *, sysarg_t, sysarg_t, sysarg_t,
|
---|
| 353 | sysarg_t, sysarg_t, sysarg_t, sysarg_t *, sysarg_t *, sysarg_t *,
|
---|
| 354 | sysarg_t *, sysarg_t *);
|
---|
[085bd54] | 355 |
|
---|
[79ae36dd] | 356 | extern async_sess_t *async_connect_me(exch_mgmt_t, async_exch_t *);
|
---|
| 357 | extern async_sess_t *async_connect_me_to(exch_mgmt_t, async_exch_t *, sysarg_t,
|
---|
| 358 | sysarg_t, sysarg_t);
|
---|
| 359 | extern async_sess_t *async_connect_me_to_blocking(exch_mgmt_t, async_exch_t *,
|
---|
| 360 | sysarg_t, sysarg_t, sysarg_t);
|
---|
| 361 | extern async_sess_t *async_connect_kbox(task_id_t);
|
---|
[fc42b28] | 362 |
|
---|
[79ae36dd] | 363 | extern int async_connect_to_me(async_exch_t *, sysarg_t, sysarg_t, sysarg_t,
|
---|
[9934f7d] | 364 | async_client_conn_t, void *);
|
---|
[79ae36dd] | 365 |
|
---|
| 366 | extern int async_hangup(async_sess_t *);
|
---|
[64d2b10] | 367 | extern void async_poke(void);
|
---|
[f74392f] | 368 |
|
---|
[79ae36dd] | 369 | extern async_exch_t *async_exchange_begin(async_sess_t *);
|
---|
| 370 | extern void async_exchange_end(async_exch_t *);
|
---|
| 371 |
|
---|
[0da4e41] | 372 | /*
|
---|
| 373 | * User-friendly wrappers for async_share_in_start().
|
---|
| 374 | */
|
---|
[64d2b10] | 375 |
|
---|
[79ae36dd] | 376 | #define async_share_in_start_0_0(exch, dst, size) \
|
---|
| 377 | async_share_in_start(exch, dst, size, 0, NULL)
|
---|
| 378 | #define async_share_in_start_0_1(exch, dst, size, flags) \
|
---|
| 379 | async_share_in_start(exch, dst, size, 0, flags)
|
---|
| 380 | #define async_share_in_start_1_0(exch, dst, size, arg) \
|
---|
| 381 | async_share_in_start(exch, dst, size, arg, NULL)
|
---|
| 382 | #define async_share_in_start_1_1(exch, dst, size, arg, flags) \
|
---|
| 383 | async_share_in_start(exch, dst, size, arg, flags)
|
---|
| 384 |
|
---|
| 385 | extern int async_share_in_start(async_exch_t *, void *, size_t, sysarg_t,
|
---|
| 386 | unsigned int *);
|
---|
[47b7006] | 387 | extern bool async_share_in_receive(ipc_callid_t *, size_t *);
|
---|
| 388 | extern int async_share_in_finalize(ipc_callid_t, void *, unsigned int);
|
---|
| 389 |
|
---|
[79ae36dd] | 390 | extern int async_share_out_start(async_exch_t *, void *, unsigned int);
|
---|
[47b7006] | 391 | extern bool async_share_out_receive(ipc_callid_t *, size_t *, unsigned int *);
|
---|
[0da4e41] | 392 | extern int async_share_out_finalize(ipc_callid_t, void *);
|
---|
[b4cbef1] | 393 |
|
---|
| 394 | /*
|
---|
| 395 | * User-friendly wrappers for async_data_read_forward_fast().
|
---|
| 396 | */
|
---|
[64d2b10] | 397 |
|
---|
[79ae36dd] | 398 | #define async_data_read_forward_0_0(exch, method, answer) \
|
---|
| 399 | async_data_read_forward_fast(exch, method, 0, 0, 0, 0, NULL)
|
---|
| 400 | #define async_data_read_forward_0_1(exch, method, answer) \
|
---|
| 401 | async_data_read_forward_fast(exch, method, 0, 0, 0, 0, answer)
|
---|
| 402 | #define async_data_read_forward_1_0(exch, method, arg1, answer) \
|
---|
| 403 | async_data_read_forward_fast(exch, method, arg1, 0, 0, 0, NULL)
|
---|
| 404 | #define async_data_read_forward_1_1(exch, method, arg1, answer) \
|
---|
| 405 | async_data_read_forward_fast(exch, method, arg1, 0, 0, 0, answer)
|
---|
| 406 | #define async_data_read_forward_2_0(exch, method, arg1, arg2, answer) \
|
---|
| 407 | async_data_read_forward_fast(exch, method, arg1, arg2, 0, 0, NULL)
|
---|
| 408 | #define async_data_read_forward_2_1(exch, method, arg1, arg2, answer) \
|
---|
| 409 | async_data_read_forward_fast(exch, method, arg1, arg2, 0, 0, answer)
|
---|
| 410 | #define async_data_read_forward_3_0(exch, method, arg1, arg2, arg3, answer) \
|
---|
| 411 | async_data_read_forward_fast(exch, method, arg1, arg2, arg3, 0, NULL)
|
---|
| 412 | #define async_data_read_forward_3_1(exch, method, arg1, arg2, arg3, answer) \
|
---|
| 413 | async_data_read_forward_fast(exch, method, arg1, arg2, arg3, 0, \
|
---|
| 414 | answer)
|
---|
| 415 | #define async_data_read_forward_4_0(exch, method, arg1, arg2, arg3, arg4, \
|
---|
| 416 | answer) \
|
---|
| 417 | async_data_read_forward_fast(exch, method, arg1, arg2, arg3, arg4, \
|
---|
[b4cbef1] | 418 | NULL)
|
---|
[79ae36dd] | 419 | #define async_data_read_forward_4_1(exch, method, arg1, arg2, arg3, arg4, \
|
---|
| 420 | answer) \
|
---|
| 421 | async_data_read_forward_fast(exch, method, arg1, arg2, arg3, arg4, \
|
---|
| 422 | answer)
|
---|
| 423 |
|
---|
| 424 | extern aid_t async_data_read(async_exch_t *, void *, size_t, ipc_call_t *);
|
---|
| 425 | extern int async_data_read_start(async_exch_t *, void *, size_t);
|
---|
[47b7006] | 426 | extern bool async_data_read_receive(ipc_callid_t *, size_t *);
|
---|
[0da4e41] | 427 | extern int async_data_read_finalize(ipc_callid_t, const void *, size_t);
|
---|
[eda925a] | 428 |
|
---|
[79ae36dd] | 429 | extern int async_data_read_forward_fast(async_exch_t *, sysarg_t, sysarg_t,
|
---|
| 430 | sysarg_t, sysarg_t, sysarg_t, ipc_call_t *);
|
---|
[b4cbef1] | 431 |
|
---|
| 432 | /*
|
---|
[eda925a] | 433 | * User-friendly wrappers for async_data_write_forward_fast().
|
---|
[b4cbef1] | 434 | */
|
---|
[64d2b10] | 435 |
|
---|
[79ae36dd] | 436 | #define async_data_write_forward_0_0(exch, method, answer) \
|
---|
| 437 | async_data_write_forward_fast(exch, method, 0, 0, 0, 0, NULL)
|
---|
| 438 | #define async_data_write_forward_0_1(exch, method, answer) \
|
---|
| 439 | async_data_write_forward_fast(exch, method, 0, 0, 0, 0, answer)
|
---|
| 440 | #define async_data_write_forward_1_0(exch, method, arg1, answer) \
|
---|
| 441 | async_data_write_forward_fast(exch, method, arg1, 0, 0, 0, NULL)
|
---|
| 442 | #define async_data_write_forward_1_1(exch, method, arg1, answer) \
|
---|
| 443 | async_data_write_forward_fast(exch, method, arg1, 0, 0, 0, answer)
|
---|
| 444 | #define async_data_write_forward_2_0(exch, method, arg1, arg2, answer) \
|
---|
| 445 | async_data_write_forward_fast(exch, method, arg1, arg2, 0, 0, NULL)
|
---|
| 446 | #define async_data_write_forward_2_1(exch, method, arg1, arg2, answer) \
|
---|
| 447 | async_data_write_forward_fast(exch, method, arg1, arg2, 0, 0, answer)
|
---|
| 448 | #define async_data_write_forward_3_0(exch, method, arg1, arg2, arg3, answer) \
|
---|
| 449 | async_data_write_forward_fast(exch, method, arg1, arg2, arg3, 0, \
|
---|
| 450 | NULL)
|
---|
| 451 | #define async_data_write_forward_3_1(exch, method, arg1, arg2, arg3, answer) \
|
---|
| 452 | async_data_write_forward_fast(exch, method, arg1, arg2, arg3, 0, \
|
---|
| 453 | answer)
|
---|
| 454 | #define async_data_write_forward_4_0(exch, method, arg1, arg2, arg3, arg4, \
|
---|
| 455 | answer) \
|
---|
| 456 | async_data_write_forward_fast(exch, method, arg1, arg2, arg3, arg4, \
|
---|
[b4cbef1] | 457 | NULL)
|
---|
[79ae36dd] | 458 | #define async_data_write_forward_4_1(exch, method, arg1, arg2, arg3, arg4, \
|
---|
| 459 | answer) \
|
---|
| 460 | async_data_write_forward_fast(exch, method, arg1, arg2, arg3, arg4, \
|
---|
| 461 | answer)
|
---|
| 462 |
|
---|
| 463 | extern int async_data_write_start(async_exch_t *, const void *, size_t);
|
---|
[47b7006] | 464 | extern bool async_data_write_receive(ipc_callid_t *, size_t *);
|
---|
[0da4e41] | 465 | extern int async_data_write_finalize(ipc_callid_t, void *, size_t);
|
---|
[eda925a] | 466 |
|
---|
| 467 | extern int async_data_write_accept(void **, const bool, const size_t,
|
---|
| 468 | const size_t, const size_t, size_t *);
|
---|
[47b7006] | 469 | extern void async_data_write_void(sysarg_t);
|
---|
[eda925a] | 470 |
|
---|
[79ae36dd] | 471 | extern int async_data_write_forward_fast(async_exch_t *, sysarg_t, sysarg_t,
|
---|
| 472 | sysarg_t, sysarg_t, sysarg_t, ipc_call_t *);
|
---|
| 473 |
|
---|
| 474 | extern int async_exchange_clone(async_exch_t *, async_exch_t *);
|
---|
| 475 | extern async_sess_t *async_clone_receive(exch_mgmt_t);
|
---|
| 476 | extern async_sess_t *async_callback_receive(exch_mgmt_t);
|
---|
[8869f7b] | 477 | extern async_sess_t *async_callback_receive_start(exch_mgmt_t, ipc_call_t *);
|
---|
[8aa42e3] | 478 |
|
---|
[630c3a9] | 479 | #endif
|
---|
[b2951e2] | 480 |
|
---|
[fadd381] | 481 | /** @}
|
---|
[b2951e2] | 482 | */
|
---|