source: mainline/uspace/lib/c/include/ipc/ipc.h@ 7c0e1f5

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 7c0e1f5 was 7c0e1f5, checked in by Jakub Jermar <jakub@…>, 8 years ago

Rework userspace call tracking

Setting the address of the userspace call structure in the kernel
call_t structure on send allows us to remove lots of userspace
scaffolding. More importantly, it also opens the door for not needing
the callid (later capability) on answer receive.

  • Property mode set to 100644
File size: 5.1 KB
Line 
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
47typedef void (*ipc_async_callback_t)(void *, int, ipc_call_t *);
48
49extern ipc_callid_t ipc_wait_cycle(ipc_call_t *, sysarg_t, unsigned int);
50extern void ipc_poke(void);
51
52#define ipc_wait_for_call(data) \
53 ipc_wait_for_call_timeout(data, SYNCH_NO_TIMEOUT);
54
55extern ipc_callid_t ipc_wait_for_call_timeout(ipc_call_t *, sysarg_t);
56extern ipc_callid_t ipc_trywait_for_call(ipc_call_t *);
57
58/*
59 * User-friendly wrappers for ipc_answer_fast() and ipc_answer_slow().
60 * They are in the form of ipc_answer_m(), where m is the number of return
61 * arguments. The macros decide between the fast and the slow version according
62 * to m.
63 */
64
65#define ipc_answer_0(callid, retval) \
66 ipc_answer_fast((callid), (retval), 0, 0, 0, 0)
67#define ipc_answer_1(callid, retval, arg1) \
68 ipc_answer_fast((callid), (retval), (arg1), 0, 0, 0)
69#define ipc_answer_2(callid, retval, arg1, arg2) \
70 ipc_answer_fast((callid), (retval), (arg1), (arg2), 0, 0)
71#define ipc_answer_3(callid, retval, arg1, arg2, arg3) \
72 ipc_answer_fast((callid), (retval), (arg1), (arg2), (arg3), 0)
73#define ipc_answer_4(callid, retval, arg1, arg2, arg3, arg4) \
74 ipc_answer_fast((callid), (retval), (arg1), (arg2), (arg3), (arg4))
75#define ipc_answer_5(callid, retval, arg1, arg2, arg3, arg4, arg5) \
76 ipc_answer_slow((callid), (retval), (arg1), (arg2), (arg3), (arg4), (arg5))
77
78extern sysarg_t ipc_answer_fast(ipc_callid_t, sysarg_t, sysarg_t, sysarg_t,
79 sysarg_t, sysarg_t);
80extern sysarg_t ipc_answer_slow(ipc_callid_t, sysarg_t, sysarg_t, sysarg_t,
81 sysarg_t, sysarg_t, sysarg_t);
82
83/*
84 * User-friendly wrappers for ipc_call_async_fast() and ipc_call_async_slow().
85 * They are in the form of ipc_call_async_m(), where m is the number of payload
86 * arguments. The macros decide between the fast and the slow version according
87 * to m.
88 */
89
90#define ipc_call_async_0(phoneid, method, private, callback) \
91 ipc_call_async_fast((phoneid), (method), 0, 0, 0, (private), (callback))
92#define ipc_call_async_1(phoneid, method, arg1, private, callback) \
93 ipc_call_async_fast((phoneid), (method), (arg1), 0, 0, (private), \
94 (callback))
95#define ipc_call_async_2(phoneid, method, arg1, arg2, private, callback) \
96 ipc_call_async_fast((phoneid), (method), (arg1), (arg2), 0, \
97 (private), (callback))
98#define ipc_call_async_3(phoneid, method, arg1, arg2, arg3, private, callback) \
99 ipc_call_async_fast((phoneid), (method), (arg1), (arg2), (arg3), \
100 (private), (callback))
101#define ipc_call_async_4(phoneid, method, arg1, arg2, arg3, arg4, private, \
102 callback) \
103 ipc_call_async_slow((phoneid), (method), (arg1), (arg2), (arg3), \
104 (arg4), 0, (private), (callback))
105#define ipc_call_async_5(phoneid, method, arg1, arg2, arg3, arg4, arg5, \
106 private, callback) \
107 ipc_call_async_slow((phoneid), (method), (arg1), (arg2), (arg3), \
108 (arg4), (arg5), (private), (callback))
109
110extern void ipc_call_async_fast(int, sysarg_t, sysarg_t, sysarg_t, sysarg_t,
111 void *, ipc_async_callback_t);
112extern void ipc_call_async_slow(int, sysarg_t, sysarg_t, sysarg_t, sysarg_t,
113 sysarg_t, sysarg_t, void *, ipc_async_callback_t);
114
115extern int ipc_hangup(int);
116
117extern int ipc_forward_fast(ipc_callid_t, int, sysarg_t, sysarg_t, sysarg_t,
118 unsigned int);
119extern int ipc_forward_slow(ipc_callid_t, int, sysarg_t, sysarg_t, sysarg_t,
120 sysarg_t, sysarg_t, sysarg_t, unsigned int);
121
122extern int ipc_connect_kbox(task_id_t);
123
124#endif
125
126/** @}
127 */
Note: See TracBrowser for help on using the repository browser.