]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sys/types.h
Merge sendmail 8.14.5 to HEAD
[FreeBSD/FreeBSD.git] / sys / sys / types.h
1 /*-
2  * Copyright (c) 1982, 1986, 1991, 1993, 1994
3  *      The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 4. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *      @(#)types.h     8.6 (Berkeley) 2/19/95
35  * $FreeBSD$
36  */
37
38 #ifndef _SYS_TYPES_H_
39 #define _SYS_TYPES_H_
40
41 #include <sys/cdefs.h>
42
43 /* Machine type dependent parameters. */
44 #include <machine/endian.h>
45 #include <sys/_types.h>
46
47 #include <sys/_pthreadtypes.h>
48
49 #if __BSD_VISIBLE
50 typedef unsigned char   u_char;
51 typedef unsigned short  u_short;
52 typedef unsigned int    u_int;
53 typedef unsigned long   u_long;
54 #ifndef _KERNEL
55 typedef unsigned short  ushort;         /* Sys V compatibility */
56 typedef unsigned int    uint;           /* Sys V compatibility */
57 #endif
58 #endif
59
60 /*
61  * XXX POSIX sized integrals that should appear only in <sys/stdint.h>.
62  */
63 #include <sys/_stdint.h>
64
65 typedef __uint8_t       u_int8_t;       /* unsigned integrals (deprecated) */
66 typedef __uint16_t      u_int16_t;
67 typedef __uint32_t      u_int32_t;
68 typedef __uint64_t      u_int64_t;
69
70 typedef __uint64_t      u_quad_t;       /* quads (deprecated) */
71 typedef __int64_t       quad_t;
72 typedef quad_t *        qaddr_t;
73
74 typedef char *          caddr_t;        /* core address */
75 typedef __const char *  c_caddr_t;      /* core address, pointer to const */
76 typedef __volatile char *v_caddr_t;     /* core address, pointer to volatile */
77
78 #ifndef _BLKSIZE_T_DECLARED
79 typedef __blksize_t     blksize_t;
80 #define _BLKSIZE_T_DECLARED
81 #endif
82
83 typedef __cpuwhich_t    cpuwhich_t;
84 typedef __cpulevel_t    cpulevel_t;
85 typedef __cpusetid_t    cpusetid_t;
86
87 #ifndef _BLKCNT_T_DECLARED
88 typedef __blkcnt_t      blkcnt_t;
89 #define _BLKCNT_T_DECLARED
90 #endif
91
92 #ifndef _CLOCK_T_DECLARED
93 typedef __clock_t       clock_t;
94 #define _CLOCK_T_DECLARED
95 #endif
96
97 #ifndef _CLOCKID_T_DECLARED
98 typedef __clockid_t     clockid_t;
99 #define _CLOCKID_T_DECLARED
100 #endif
101
102 typedef __critical_t    critical_t;     /* Critical section value */
103 typedef __int64_t       daddr_t;        /* disk address */
104
105 #ifndef _DEV_T_DECLARED
106 typedef __dev_t         dev_t;          /* device number or struct cdev */
107 #define _DEV_T_DECLARED
108 #endif
109
110 #ifndef _FFLAGS_T_DECLARED
111 typedef __fflags_t      fflags_t;       /* file flags */
112 #define _FFLAGS_T_DECLARED
113 #endif
114
115 typedef __fixpt_t       fixpt_t;        /* fixed point number */
116
117 #ifndef _FSBLKCNT_T_DECLARED            /* for statvfs() */
118 typedef __fsblkcnt_t    fsblkcnt_t;
119 typedef __fsfilcnt_t    fsfilcnt_t;
120 #define _FSBLKCNT_T_DECLARED
121 #endif
122
123 #ifndef _GID_T_DECLARED
124 typedef __gid_t         gid_t;          /* group id */
125 #define _GID_T_DECLARED
126 #endif
127
128 #ifndef _IN_ADDR_T_DECLARED
129 typedef __uint32_t      in_addr_t;      /* base type for internet address */
130 #define _IN_ADDR_T_DECLARED
131 #endif
132
133 #ifndef _IN_PORT_T_DECLARED
134 typedef __uint16_t      in_port_t;
135 #define _IN_PORT_T_DECLARED
136 #endif
137
138 #ifndef _ID_T_DECLARED
139 typedef __id_t          id_t;           /* can hold a uid_t or pid_t */
140 #define _ID_T_DECLARED
141 #endif
142
143 #ifndef _INO_T_DECLARED
144 typedef __ino_t         ino_t;          /* inode number */
145 #define _INO_T_DECLARED
146 #endif
147
148 #ifndef _KEY_T_DECLARED
149 typedef __key_t         key_t;          /* IPC key (for Sys V IPC) */
150 #define _KEY_T_DECLARED
151 #endif
152
153 #ifndef _LWPID_T_DECLARED
154 typedef __lwpid_t       lwpid_t;        /* Thread ID (a.k.a. LWP) */
155 #define _LWPID_T_DECLARED
156 #endif
157
158 #ifndef _MODE_T_DECLARED
159 typedef __mode_t        mode_t;         /* permissions */
160 #define _MODE_T_DECLARED
161 #endif
162
163 #ifndef _ACCMODE_T_DECLARED
164 typedef __accmode_t     accmode_t;      /* access permissions */
165 #define _ACCMODE_T_DECLARED
166 #endif
167
168 #ifndef _NLINK_T_DECLARED
169 typedef __nlink_t       nlink_t;        /* link count */
170 #define _NLINK_T_DECLARED
171 #endif
172
173 #ifndef _OFF_T_DECLARED
174 typedef __off_t         off_t;          /* file offset */
175 #define _OFF_T_DECLARED
176 #endif
177
178 #ifndef _PID_T_DECLARED
179 typedef __pid_t         pid_t;          /* process id */
180 #define _PID_T_DECLARED
181 #endif
182
183 typedef __register_t    register_t;
184
185 #ifndef _RLIM_T_DECLARED
186 typedef __rlim_t        rlim_t;         /* resource limit */
187 #define _RLIM_T_DECLARED
188 #endif
189
190 typedef __segsz_t       segsz_t;        /* segment size (in pages) */
191
192 #ifndef _SIZE_T_DECLARED
193 typedef __size_t        size_t;
194 #define _SIZE_T_DECLARED
195 #endif
196
197 #ifndef _SSIZE_T_DECLARED
198 typedef __ssize_t       ssize_t;
199 #define _SSIZE_T_DECLARED
200 #endif
201
202 #ifndef _SUSECONDS_T_DECLARED
203 typedef __suseconds_t   suseconds_t;    /* microseconds (signed) */
204 #define _SUSECONDS_T_DECLARED
205 #endif
206
207 #ifndef _TIME_T_DECLARED
208 typedef __time_t        time_t;
209 #define _TIME_T_DECLARED
210 #endif
211
212 #ifndef _TIMER_T_DECLARED
213 typedef __timer_t       timer_t;
214 #define _TIMER_T_DECLARED
215 #endif
216
217 #ifndef _MQD_T_DECLARED
218 typedef __mqd_t mqd_t;
219 #define _MQD_T_DECLARED
220 #endif
221
222 typedef __u_register_t  u_register_t;
223
224 #ifndef _UID_T_DECLARED
225 typedef __uid_t         uid_t;          /* user id */
226 #define _UID_T_DECLARED
227 #endif
228
229 #ifndef _USECONDS_T_DECLARED
230 typedef __useconds_t    useconds_t;     /* microseconds (unsigned) */
231 #define _USECONDS_T_DECLARED
232 #endif
233
234 typedef __vm_offset_t   vm_offset_t;
235 typedef __vm_ooffset_t  vm_ooffset_t;
236 typedef __vm_paddr_t    vm_paddr_t;
237 typedef __vm_pindex_t   vm_pindex_t;
238 typedef __vm_size_t     vm_size_t;
239
240 #ifdef _KERNEL
241 typedef int             boolean_t;
242 typedef struct device   *device_t;
243 typedef __intfptr_t     intfptr_t;
244
245 /*
246  * XXX this is fixed width for historical reasons.  It should have had type
247  * __int_fast32_t.  Fixed-width types should not be used unless binary
248  * compatibility is essential.  Least-width types should be used even less
249  * since they provide smaller benefits.
250  *
251  * XXX should be MD.
252  *
253  * XXX this is bogus in -current, but still used for spl*().
254  */
255 typedef __uint32_t      intrmask_t;     /* Interrupt mask (spl, xxx_imask...) */
256
257 typedef __uintfptr_t    uintfptr_t;
258 typedef __uint64_t      uoff_t;
259 typedef char            vm_memattr_t;   /* memory attribute codes */
260 typedef struct vm_page  *vm_page_t;
261
262 #define offsetof(type, field) __offsetof(type, field)
263
264 #endif /* !_KERNEL */
265
266 /*
267  * The following are all things that really shouldn't exist in this header,
268  * since its purpose is to provide typedefs, not miscellaneous doodads.
269  */
270 #if __BSD_VISIBLE
271
272 #include <sys/select.h>
273
274 /*
275  * minor() gives a cookie instead of an index since we don't want to
276  * change the meanings of bits 0-15 or waste time and space shifting
277  * bits 16-31 for devices that don't use them.
278  */
279 #define major(x)        ((int)(((u_int)(x) >> 8)&0xff)) /* major number */
280 #define minor(x)        ((int)((x)&0xffff00ff))         /* minor number */
281 #define makedev(x,y)    ((dev_t)(((x) << 8) | (y)))     /* create dev_t */
282
283 /*
284  * These declarations belong elsewhere, but are repeated here and in
285  * <stdio.h> to give broken programs a better chance of working with
286  * 64-bit off_t's.
287  */
288 #ifndef _KERNEL
289 __BEGIN_DECLS
290 #ifndef _FTRUNCATE_DECLARED
291 #define _FTRUNCATE_DECLARED
292 int      ftruncate(int, off_t);
293 #endif
294 #ifndef _LSEEK_DECLARED
295 #define _LSEEK_DECLARED
296 off_t    lseek(int, off_t, int);
297 #endif
298 #ifndef _MMAP_DECLARED
299 #define _MMAP_DECLARED
300 void *   mmap(void *, size_t, int, int, int, off_t);
301 #endif
302 #ifndef _TRUNCATE_DECLARED
303 #define _TRUNCATE_DECLARED
304 int      truncate(const char *, off_t);
305 #endif
306 __END_DECLS
307 #endif /* !_KERNEL */
308
309 #endif /* __BSD_VISIBLE */
310
311 #endif /* !_SYS_TYPES_H_ */