- GALILEO -> MARVELL
[dragonfly.git] / sys / emulation / linux / linux_ipc.h
1 /*-
2  * Copyright (c) 2000 Marcel Moolenaar
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  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer 
10  *    in this position and unchanged.
11  * 2. 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  * 3. 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  * $FreeBSD: src/sys/compat/linux/linux_ipc.h,v 1.2.2.4 2001/11/05 19:08:22 marcel Exp $
29  * $DragonFly: src/sys/emulation/linux/linux_ipc.h,v 1.7 2003/11/20 06:05:29 dillon Exp $
30  */
31
32 #ifndef _LINUX_IPC_H_
33 #define _LINUX_IPC_H_
34
35 #ifdef __i386__
36
37 struct linux_msgctl_args 
38 {
39         struct sysmsg   sysmsg;
40         l_int           msqid;
41         l_int           cmd;
42         struct l_msqid_ds *buf;
43 };
44
45 struct linux_msgget_args
46 {
47         struct sysmsg   sysmsg;
48         l_key_t         key;
49         l_int           msgflg;
50 };
51
52 struct linux_msgrcv_args
53 {
54         struct sysmsg   sysmsg;
55         l_int           msqid;
56         struct l_msgbuf *msgp;
57         l_size_t        msgsz;
58         l_long          msgtyp;
59         l_int           msgflg;
60 };
61
62 struct linux_msgsnd_args
63 {
64         struct sysmsg   sysmsg;
65         l_int           msqid;
66         struct l_msgbuf *msgp;
67         l_size_t        msgsz;
68         l_int           msgflg;
69 };
70
71 struct linux_semctl_args
72 {
73         struct sysmsg   sysmsg;
74         l_int           semid;
75         l_int           semnum;
76         l_int           cmd;
77         union l_semun   arg;
78 };
79
80 struct linux_semget_args
81 {
82         struct sysmsg   sysmsg;
83         l_key_t         key;
84         l_int           nsems;
85         l_int           semflg;
86 };
87
88 struct linux_semop_args
89 {
90         struct sysmsg   sysmsg;
91         l_int           semid;
92         struct l_sembuf *tsops;
93         l_uint          nsops;
94 };
95
96 struct linux_shmat_args
97 {
98         struct sysmsg   sysmsg;
99         l_int           shmid;
100         char            *shmaddr;
101         l_int           shmflg;
102         l_ulong         *raddr;
103 };
104
105 struct linux_shmctl_args
106 {
107         struct sysmsg   sysmsg;
108         l_int           shmid;
109         l_int           cmd;
110         struct l_shmid_ds *buf;
111 };
112
113 struct linux_shmdt_args
114 {
115         struct sysmsg   sysmsg;
116         char *shmaddr;
117 };
118
119 struct linux_shmget_args
120 {
121         struct sysmsg   sysmsg;
122         l_key_t         key;
123         l_size_t        size;
124         l_int           shmflg;
125 };
126
127 int linux_msgctl (struct linux_msgctl_args *);
128 int linux_msgget (struct linux_msgget_args *);
129 int linux_msgrcv (struct linux_msgrcv_args *);
130 int linux_msgsnd (struct linux_msgsnd_args *);
131
132 int linux_semctl (struct linux_semctl_args *);
133 int linux_semget (struct linux_semget_args *);
134 int linux_semop  (struct linux_semop_args *);
135
136 int linux_shmat  (struct linux_shmat_args *);
137 int linux_shmctl (struct linux_shmctl_args *);
138 int linux_shmdt  (struct linux_shmdt_args *);
139 int linux_shmget (struct linux_shmget_args *);
140
141 #endif  /* __i386__ */
142
143 #endif /* _LINUX_IPC_H_ */