]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sys/types.h
This commit was generated by cvs2svn to compensate for changes in r93139,
[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  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by the University of
21  *      California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  *
38  *      @(#)types.h     8.6 (Berkeley) 2/19/95
39  * $FreeBSD$
40  */
41
42 #ifndef _SYS_TYPES_H_
43 #define _SYS_TYPES_H_
44
45 #include <sys/cdefs.h>
46
47 /* Machine type dependent parameters. */
48 #include <sys/stdint.h>                 /* includes <machine/ansi.h> */
49 #include <machine/endian.h>
50 #include <machine/types.h>
51
52 #ifndef _POSIX_SOURCE
53 typedef unsigned char   u_char;
54 typedef unsigned short  u_short;
55 typedef unsigned int    u_int;
56 typedef unsigned long   u_long;
57 typedef unsigned short  ushort;         /* Sys V compatibility */
58 typedef unsigned int    uint;           /* Sys V compatibility */
59 #endif
60
61 typedef __uint8_t       u_int8_t;
62 typedef __uint16_t      u_int16_t;
63 typedef __uint32_t      u_int32_t;
64 typedef __uint64_t      u_int64_t;
65
66 typedef u_int64_t       u_quad_t;       /* quads */
67 typedef int64_t         quad_t;
68 typedef quad_t *        qaddr_t;
69
70 typedef char *          caddr_t;        /* core address */
71 typedef __const char *  c_caddr_t;      /* core address, pointer to const */
72 typedef __volatile char *v_caddr_t;     /* core address, pointer to volatile */
73 typedef int32_t         daddr_t;        /* disk address */
74 typedef int64_t         daddr64_t;      /* 64-bit disk address */
75 typedef u_int32_t       u_daddr_t;      /* unsigned disk address */
76 typedef u_int32_t       fixpt_t;        /* fixed point number */
77
78 #ifndef _GID_T_DECLARED
79 #define _GID_T_DECLARED
80 typedef u_int32_t       gid_t;          /* group id */
81 #endif
82
83 typedef u_int32_t       ino_t;          /* inode number */
84 typedef long            key_t;          /* IPC key (for Sys V IPC) */
85 typedef u_int16_t       mode_t;         /* permissions */
86 typedef u_int16_t       nlink_t;        /* link count */
87 typedef _BSD_OFF_T_     off_t;          /* file offset */
88 typedef _BSD_PID_T_     pid_t;          /* process id */
89 typedef quad_t          rlim_t;         /* resource limit */
90 #ifdef __alpha__                /* XXX should be in <machine/types.h> */
91 typedef int64_t         segsz_t;        /* segment size */
92 #else
93 typedef int32_t         segsz_t;        /* segment size */
94 #endif
95 typedef int32_t         swblk_t;        /* swap offset */
96 typedef int32_t         ufs_daddr_t;
97 typedef int32_t         ufs_time_t;
98 typedef u_int32_t       uid_t;          /* user id */
99
100 #ifdef _KERNEL
101 typedef int             boolean_t;
102 typedef u_int64_t       uoff_t;
103 typedef struct vm_page  *vm_page_t;
104
105 struct specinfo;
106
107 typedef u_int32_t       udev_t;         /* device number */
108 typedef struct specinfo *dev_t;
109
110 #define offsetof(type, field) __offsetof(type, field)
111
112 #else /* !_KERNEL */
113
114 typedef u_int32_t       dev_t;          /* device number */
115 #define udev_t dev_t
116
117 #ifndef _POSIX_SOURCE
118
119 /*
120  * minor() gives a cookie instead of an index since we don't want to
121  * change the meanings of bits 0-15 or waste time and space shifting
122  * bits 16-31 for devices that don't use them.
123  */
124 #define major(x)        ((int)(((u_int)(x) >> 8)&0xff)) /* major number */
125 #define minor(x)        ((int)((x)&0xffff00ff))         /* minor number */
126 #define makedev(x,y)    ((dev_t)(((x) << 8) | (y)))     /* create dev_t */
127
128 #endif /* _POSIX_SOURCE */
129
130 #endif /* !_KERNEL */
131
132 #ifdef  _BSD_CLOCK_T_
133 typedef _BSD_CLOCK_T_   clock_t;
134 #undef  _BSD_CLOCK_T_
135 #endif
136
137 #ifdef  _BSD_CLOCKID_T_
138 typedef _BSD_CLOCKID_T_ clockid_t;
139 #undef  _BSD_CLOCKID_T_
140 #endif
141
142 #ifdef _BSD_FFLAGS_T_
143 typedef _BSD_FFLAGS_T_  fflags_t;       /* file flags */
144 #undef _BSD_FFLAGS_T_
145 #endif
146
147 #ifdef  _BSD_SIZE_T_
148 typedef _BSD_SIZE_T_    size_t;
149 #undef  _BSD_SIZE_T_
150 #endif
151
152 #ifdef  _BSD_SSIZE_T_
153 typedef _BSD_SSIZE_T_   ssize_t;
154 #undef  _BSD_SSIZE_T_
155 #endif
156
157 #ifdef  _BSD_TIME_T_
158 typedef _BSD_TIME_T_    time_t;
159 #undef  _BSD_TIME_T_
160 #endif
161
162 #ifdef  _BSD_TIMER_T_
163 typedef _BSD_TIMER_T_   timer_t;
164 #undef  _BSD_TIMER_T_
165 #endif
166
167 #ifndef _POSIX_SOURCE
168 #define NBBY    8               /* number of bits in a byte */
169
170 /*
171  * Select uses bit masks of file descriptors in longs.  These macros
172  * manipulate such bit fields (the filesystem macros use chars).
173  * FD_SETSIZE may be defined by the user, but the default here should
174  * be enough for most uses.
175  */
176 #ifndef FD_SETSIZE
177 #define FD_SETSIZE      1024U
178 #endif
179
180 typedef unsigned long   fd_mask;
181 #define NFDBITS (sizeof(fd_mask) * NBBY)        /* bits per mask */
182
183 #ifndef howmany
184 #define howmany(x, y)   (((x) + ((y) - 1U)) / (y))
185 #endif
186
187 typedef struct fd_set {
188         fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
189 } fd_set;
190
191 #define _fdset_mask(n)  ((fd_mask)1 << ((n) % NFDBITS))
192 #define FD_SET(n, p)    ((p)->fds_bits[(n)/NFDBITS] |= _fdset_mask(n))
193 #define FD_CLR(n, p)    ((p)->fds_bits[(n)/NFDBITS] &= ~_fdset_mask(n))
194 #define FD_ISSET(n, p)  ((p)->fds_bits[(n)/NFDBITS] & _fdset_mask(n))
195 #define FD_COPY(f, t)   bcopy(f, t, sizeof(*(f)))
196 #define FD_ZERO(p)      bzero(p, sizeof(*(p)))
197
198 /*
199  * These declarations belong elsewhere, but are repeated here and in
200  * <stdio.h> to give broken programs a better chance of working with
201  * 64-bit off_t's.
202  */
203 #ifndef _KERNEL
204 __BEGIN_DECLS
205 #ifndef _FTRUNCATE_DECLARED
206 #define _FTRUNCATE_DECLARED
207 int      ftruncate(int, off_t);
208 #endif
209 #ifndef _LSEEK_DECLARED
210 #define _LSEEK_DECLARED
211 off_t    lseek(int, off_t, int);
212 #endif
213 #ifndef _MMAP_DECLARED
214 #define _MMAP_DECLARED
215 void *   mmap(void *, size_t, int, int, int, off_t);
216 #endif
217 #ifndef _TRUNCATE_DECLARED
218 #define _TRUNCATE_DECLARED
219 int      truncate(const char *, off_t);
220 #endif
221 __END_DECLS
222 #endif /* !_KERNEL */
223
224 #endif /* !_POSIX_SOURCE */
225
226 #endif /* !_SYS_TYPES_H_ */