]>
git.saurik.com Git - apple/xnu.git/blob - bsd/sys/ipc.h
2 * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * Copyright (c) 1988 University of Utah.
24 * Copyright (c) 1990, 1993
25 * The Regents of the University of California. All rights reserved.
26 * (c) UNIX System Laboratories, Inc.
27 * All or some portions of this file are derived from material licensed
28 * to the University of California by American Telephone and Telegraph
29 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
30 * the permission of UNIX System Laboratories, Inc.
32 * This code is derived from software contributed to Berkeley by
33 * the Systems Programming Group of the University of Utah Computer
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in the
43 * documentation and/or other materials provided with the distribution.
44 * 3. All advertising materials mentioning features or use of this software
45 * must display the following acknowledgement:
46 * This product includes software developed by the University of
47 * California, Berkeley and its contributors.
48 * 4. Neither the name of the University nor the names of its contributors
49 * may be used to endorse or promote products derived from this software
50 * without specific prior written permission.
52 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
53 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
54 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
55 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
56 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
57 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
58 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
59 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
60 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
61 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 * @(#)ipc.h 8.4 (Berkeley) 2/19/95
67 #include <sys/appleapiopts.h>
70 * SVID compatible ipc.h file
76 ushort cuid
; /* creator user id */
77 ushort cgid
; /* creator group id */
78 ushort uid
; /* user id */
79 ushort gid
; /* group id */
80 ushort mode
; /* r/w permission */
81 ushort seq
; /* sequence # (to generate unique msg/sem/shm id) */
82 key_t key
; /* user specified msg/sem/shm key */
85 /* common mode bits */
86 #define IPC_R 000400 /* read permission */
87 #define IPC_W 000200 /* write/alter permission */
88 #define IPC_M 010000 /* permission to change control info */
90 /* SVID required constants (same values as system 5) */
91 #define IPC_CREAT 001000 /* create entry if key does not exist */
92 #define IPC_EXCL 002000 /* fail if key exists */
93 #define IPC_NOWAIT 004000 /* error if request must wait */
95 #define IPC_PRIVATE (key_t)0 /* private key */
97 #define IPC_RMID 0 /* remove identifier */
98 #define IPC_SET 1 /* set options */
99 #define IPC_STAT 2 /* get options */
102 #ifdef __APPLE_API_PRIVATE
104 /* Macros to convert between ipc ids and array indices or sequence ids */
105 #define IPCID_TO_IX(id) ((id) & 0xffff)
106 #define IPCID_TO_SEQ(id) (((id) >> 16) & 0xffff)
107 #define IXSEQ_TO_IPCID(ix,perm) (((perm.seq) << 16) | (ix & 0xffff))
111 int ipcperm
__P((struct ucred
*, struct ipc_perm
*, int));
112 #endif /* __APPLE_API_PRIVATE */
115 /* XXX doesn't really belong here, but has been historical practice in SysV. */
117 #include <sys/cdefs.h>
120 key_t ftok
__P((const char *, int));
125 #endif /* !_SYS_IPC_H_ */