]> git.saurik.com Git - apple/xnu.git/blame - bsd/sys/types.h
xnu-344.49.tar.gz
[apple/xnu.git] / bsd / sys / types.h
CommitLineData
1c79356b 1/*
9bccf70c 2 * Copyright (c) 2000-2001 Apple Computer, Inc. All rights reserved.
1c79356b
A
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
43866e37 6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
1c79356b 7 *
43866e37
A
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * file.
14 *
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
1c79356b
A
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
43866e37
A
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
1c79356b
A
22 *
23 * @APPLE_LICENSE_HEADER_END@
24 */
25/* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
26/*-
27 * Copyright (c) 1982, 1986, 1991, 1993, 1994
28 * The Regents of the University of California. All rights reserved.
29 * (c) UNIX System Laboratories, Inc.
30 * All or some portions of this file are derived from material licensed
31 * to the University of California by American Telephone and Telegraph
32 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
33 * the permission of UNIX System Laboratories, Inc.
34 *
35 * Redistribution and use in source and binary forms, with or without
36 * modification, are permitted provided that the following conditions
37 * are met:
38 * 1. Redistributions of source code must retain the above copyright
39 * notice, this list of conditions and the following disclaimer.
40 * 2. Redistributions in binary form must reproduce the above copyright
41 * notice, this list of conditions and the following disclaimer in the
42 * documentation and/or other materials provided with the distribution.
43 * 3. All advertising materials mentioning features or use of this software
44 * must display the following acknowledgement:
45 * This product includes software developed by the University of
46 * California, Berkeley and its contributors.
47 * 4. Neither the name of the University nor the names of its contributors
48 * may be used to endorse or promote products derived from this software
49 * without specific prior written permission.
50 *
51 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
52 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
53 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
54 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
55 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
56 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
57 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
58 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
59 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
60 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
61 * SUCH DAMAGE.
62 *
63 * @(#)types.h 8.4 (Berkeley) 1/21/94
64 */
65
66#ifndef _SYS_TYPES_H_
67#define _SYS_TYPES_H_
68
9bccf70c
A
69#include <sys/appleapiopts.h>
70
1c79356b
A
71#ifndef __ASSEMBLER__
72#include <sys/cdefs.h>
73
74/* Machine type dependent parameters. */
75#include <machine/types.h>
76
77#include <machine/ansi.h>
78#include <machine/endian.h>
79
80#ifndef _POSIX_SOURCE
81typedef unsigned char u_char;
82typedef unsigned short u_short;
83typedef unsigned int u_int;
84typedef unsigned long u_long;
85typedef unsigned short ushort; /* Sys V compatibility */
86typedef unsigned int uint; /* Sys V compatibility */
87#endif
88
89typedef u_int64_t u_quad_t; /* quads */
90typedef int64_t quad_t;
91typedef quad_t * qaddr_t;
92
93typedef char * caddr_t; /* core address */
94typedef int32_t daddr_t; /* disk address */
95typedef int32_t dev_t; /* device number */
96typedef u_int32_t fixpt_t; /* fixed point number */
97typedef u_int32_t gid_t; /* group id */
9bccf70c
A
98typedef u_int32_t in_addr_t; /* base type for internet address */
99typedef u_int16_t in_port_t;
1c79356b
A
100typedef u_int32_t ino_t; /* inode number */
101typedef long key_t; /* IPC key (for Sys V IPC) */
102typedef u_int16_t mode_t; /* permissions */
103typedef u_int16_t nlink_t; /* link count */
104typedef quad_t off_t; /* file offset */
105typedef int32_t pid_t; /* process id */
106typedef quad_t rlim_t; /* resource limit */
107typedef int32_t segsz_t; /* segment size */
108typedef int32_t swblk_t; /* swap offset */
109typedef u_int32_t uid_t; /* user id */
110
1c79356b
A
111#ifndef _POSIX_SOURCE
112/* Major, minor numbers, dev_t's. */
113#define major(x) ((int32_t)(((u_int32_t)(x) >> 24) & 0xff))
114#define minor(x) ((int32_t)((x) & 0xffffff))
115#define makedev(x,y) ((dev_t)(((x) << 24) | (y)))
116#endif
117
118#ifndef _BSD_CLOCK_T_DEFINED_
119#define _BSD_CLOCK_T_DEFINED_
120typedef _BSD_CLOCK_T_ clock_t;
121#endif
122
123#ifndef _BSD_SIZE_T_DEFINED_
124#define _BSD_SIZE_T_DEFINED_
125typedef _BSD_SIZE_T_ size_t;
126#endif
127
128#ifndef _BSD_SSIZE_T_DEFINED_
129#define _BSD_SSIZE_T_DEFINED_
130typedef _BSD_SSIZE_T_ ssize_t;
131#endif
132
133#ifndef _BSD_TIME_T_DEFINED_
134#define _BSD_TIME_T_DEFINED_
135typedef _BSD_TIME_T_ time_t;
136#endif
137
138#ifndef _POSIX_SOURCE
139#define NBBY 8 /* number of bits in a byte */
140
141/*
142 * Select uses bit masks of file descriptors in longs. These macros
143 * manipulate such bit fields (the filesystem macros use chars).
144 */
145#ifndef FD_SETSIZE
0b4e3aa0 146#define FD_SETSIZE 1024
1c79356b
A
147#endif
148
149typedef int32_t fd_mask;
150#define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */
151
152#ifndef howmany
153#define howmany(x, y) (((x) + ((y) - 1)) / (y))
154#endif
155
156typedef struct fd_set {
157 fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
158} fd_set;
159
160#define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
161#define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
162#define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
163#define FD_COPY(f, t) bcopy(f, t, sizeof(*(f)))
164#define FD_ZERO(p) bzero(p, sizeof(*(p)))
165
166#if defined(__STDC__) && defined(KERNEL)
167/*
168 * Forward structure declarations for function prototypes. We include the
169 * common structures that cross subsystem boundaries here; others are mostly
170 * used in the same place that the structure is defined.
171 */
172struct proc;
173struct pgrp;
174struct ucred;
175struct rusage;
176struct file;
177struct buf;
178struct tty;
179struct uio;
180#endif
181
182#endif /* !_POSIX_SOURCE */
183#endif /* __ASSEMBLER__ */
184
185struct _pthread_handler_rec
186{
187 void (*routine)(void *); /* Routine to call */
188 void *arg; /* Argument to pass */
189 struct _pthread_handler_rec *next;
190};
191
192#ifndef __POSIX_LIB__
193
194#define __PTHREAD_SIZE__ 596
195#define __PTHREAD_ATTR_SIZE__ 36
196#define __PTHREAD_MUTEXATTR_SIZE__ 8
197#define __PTHREAD_MUTEX_SIZE__ 40
198#define __PTHREAD_CONDATTR_SIZE__ 4
199#define __PTHREAD_COND_SIZE__ 24
200#define __PTHREAD_ONCE_SIZE__ 4
9bccf70c
A
201#define __PTHREAD_RWLOCK_SIZE__ 124
202#define __PTHREAD_RWLOCKATTR_SIZE__ 12
1c79356b
A
203
204
205typedef struct _opaque_pthread_t { long sig; struct _pthread_handler_rec *cleanup_stack; char opaque[__PTHREAD_SIZE__];} *pthread_t;
206
207typedef struct _opaque_pthread_attr_t { long sig; char opaque[__PTHREAD_ATTR_SIZE__]; } pthread_attr_t;
208
209typedef struct _opaque_pthread_mutexattr_t { long sig; char opaque[__PTHREAD_MUTEXATTR_SIZE__]; } pthread_mutexattr_t;
210
211typedef struct _opaque_pthread_mutex_t { long sig; char opaque[__PTHREAD_MUTEX_SIZE__]; } pthread_mutex_t;
212
213typedef struct _opaque_pthread_condattr_t { long sig; char opaque[__PTHREAD_CONDATTR_SIZE__]; } pthread_condattr_t;
214
215typedef struct _opaque_pthread_cond_t { long sig; char opaque[__PTHREAD_COND_SIZE__]; } pthread_cond_t;
216
9bccf70c
A
217typedef struct _opaque_pthread_rwlockattr_t { long sig; char opaque[__PTHREAD_RWLOCKATTR_SIZE__]; } pthread_rwlockattr_t;
218
219typedef struct _opaque_pthread_rwlock_t { long sig; char opaque[__PTHREAD_RWLOCK_SIZE__]; } pthread_rwlock_t;
220
1c79356b
A
221typedef struct { long sig; char opaque[__PTHREAD_ONCE_SIZE__]; } pthread_once_t;
222
223#endif /* __POSIX_LIB__ */
224
225typedef unsigned long pthread_key_t; /* Opaque 'pointer' */
226
227#endif /* !_SYS_TYPES_H_ */