nfs: fix real/effective id mismatch in nfs_access
[dragonfly.git] / sys / emulation / linux / linux_ipc.h
blobb7db664ed97d4d04bd1de3a70cd1c079911236d9
1 /*-
2 * Copyright (c) 2000 Marcel Moolenaar
3 * All rights reserved.
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.
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.
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 $
32 #ifndef _LINUX_IPC_H_
33 #define _LINUX_IPC_H_
35 #ifdef __i386__
37 struct linux_msgctl_args
39 struct sysmsg sysmsg;
40 l_int msqid;
41 l_int cmd;
42 struct l_msqid_ds *buf;
45 struct linux_msgget_args
47 struct sysmsg sysmsg;
48 l_key_t key;
49 l_int msgflg;
52 struct linux_msgrcv_args
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;
62 struct linux_msgsnd_args
64 struct sysmsg sysmsg;
65 l_int msqid;
66 struct l_msgbuf *msgp;
67 l_size_t msgsz;
68 l_int msgflg;
71 struct linux_semctl_args
73 struct sysmsg sysmsg;
74 l_int semid;
75 l_int semnum;
76 l_int cmd;
77 union l_semun arg;
80 struct linux_semget_args
82 struct sysmsg sysmsg;
83 l_key_t key;
84 l_int nsems;
85 l_int semflg;
88 struct linux_semop_args
90 struct sysmsg sysmsg;
91 l_int semid;
92 struct l_sembuf *tsops;
93 l_uint nsops;
96 struct linux_shmat_args
98 struct sysmsg sysmsg;
99 l_int shmid;
100 char *shmaddr;
101 l_int shmflg;
102 l_ulong *raddr;
105 struct linux_shmctl_args
107 struct sysmsg sysmsg;
108 l_int shmid;
109 l_int cmd;
110 struct l_shmid_ds *buf;
113 struct linux_shmdt_args
115 struct sysmsg sysmsg;
116 char *shmaddr;
119 struct linux_shmget_args
121 struct sysmsg sysmsg;
122 l_key_t key;
123 l_size_t size;
124 l_int shmflg;
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 *);
132 int linux_semctl (struct linux_semctl_args *);
133 int linux_semget (struct linux_semget_args *);
134 int linux_semop (struct linux_semop_args *);
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 *);
141 #endif /* __i386__ */
143 #endif /* _LINUX_IPC_H_ */