apply new hurd patch to my tree
[debian/pax] / types.h
1 /*-
2  * Copyright (c) 1982, 1986, 1991, 1993
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.4 (Berkeley) 1/21/94
39  * $Id: types.h,v 1.1 2001-07-23 05:20:01 bdale Exp $
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 <machine/endian.h>
49
50 #ifndef _POSIX_SOURCE
51 typedef unsigned char   u_char;
52 typedef unsigned short  u_short;
53 typedef unsigned int    u_int;
54 typedef unsigned long   u_long;
55 typedef unsigned short  ushort;         /* Sys V compatibility */
56 typedef unsigned int    uint;           /* Sys V compatibility */
57 #endif
58
59 typedef unsigned long long u_quad_t;    /* quads */
60 typedef long long       quad_t;
61 typedef quad_t *        qaddr_t;
62
63 typedef char *          caddr_t;        /* core address */
64 typedef long            daddr_t;        /* disk address */
65 typedef unsigned long   dev_t;          /* device number */
66 typedef unsigned long   fixpt_t;        /* fixed point number */
67 typedef unsigned long   gid_t;          /* group id */
68 typedef unsigned long   ino_t;          /* inode number */
69 typedef unsigned short  mode_t;         /* permissions */
70 typedef unsigned short  nlink_t;        /* link count */
71 typedef quad_t          off_t;          /* file offset */
72 typedef long            pid_t;          /* process id */
73 typedef long            segsz_t;        /* segment size */
74 typedef long            swblk_t;        /* swap offset */
75 typedef unsigned long   uid_t;          /* user id */
76
77 /*
78  * This belongs in unistd.h, but is placed here to ensure that programs
79  * casting the second parameter of lseek to off_t will get the correct
80  * version of lseek.
81  */
82 #ifndef KERNEL
83 __BEGIN_DECLS
84 off_t    lseek __P((int, off_t, int));
85 __END_DECLS
86 #endif
87
88 #ifndef _POSIX_SOURCE
89 /*
90  * minor() gives a cookie instead of an index since we don't want to
91  * change the meanings of bits 0-15 or waste time and space shifting
92  * bits 16-31 for devices that don't use them.
93  */
94 #define major(x)        ((int)(((u_int)(x) >> 8)&0xff)) /* major number */
95 #define minor(x)        ((int)((x)&0xffff00ff))         /* minor number */
96 #define makedev(x,y)    ((dev_t)(((x)<<8) | (y)))       /* create dev_t */
97 #endif
98
99 #include <machine/ansi.h>
100 #include <machine/types.h>
101
102 #ifdef  _BSD_CLOCK_T_
103 typedef _BSD_CLOCK_T_   clock_t;
104 #undef  _BSD_CLOCK_T_
105 #endif
106
107 #ifdef  _BSD_SIZE_T_
108 typedef _BSD_SIZE_T_    size_t;
109 #undef  _BSD_SIZE_T_
110 #endif
111
112 #ifdef  _BSD_SSIZE_T_
113 typedef _BSD_SSIZE_T_   ssize_t;
114 #undef  _BSD_SSIZE_T_
115 #endif
116
117 #ifdef  _BSD_TIME_T_
118 typedef _BSD_TIME_T_    time_t;
119 #undef  _BSD_TIME_T_
120 #endif
121
122 #ifndef _POSIX_SOURCE
123 #define NBBY    8               /* number of bits in a byte */
124
125 /*
126  * Select uses bit masks of file descriptors in longs.  These macros
127  * manipulate such bit fields (the filesystem macros use chars).
128  * FD_SETSIZE may be defined by the user, but the default here should
129  * be enough for most uses.
130  */
131 #ifndef FD_SETSIZE
132 #define FD_SETSIZE      256
133 #endif
134
135 typedef long    fd_mask;
136 #define NFDBITS (sizeof(fd_mask) * NBBY)        /* bits per mask */
137
138 #ifndef howmany
139 #define howmany(x, y)   (((x)+((y)-1))/(y))
140 #endif
141
142 typedef struct fd_set {
143         fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
144 } fd_set;
145
146 #define FD_SET(n, p)    ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
147 #define FD_CLR(n, p)    ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
148 #define FD_ISSET(n, p)  ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
149 #define FD_COPY(f, t)   bcopy(f, t, sizeof(*(f)))
150 #define FD_ZERO(p)      bzero(p, sizeof(*(p)))
151
152 #if defined(__STDC__) && defined(KERNEL)
153 /*
154  * Forward structure declarations for function prototypes.  We include the
155  * common structures that cross subsystem boundaries here; others are mostly
156  * used in the same place that the structure is defined.
157  */
158 struct  proc;
159 struct  pgrp;
160 struct  ucred;
161 struct  rusage;
162 struct  file;
163 struct  buf;
164 struct  tty;
165 struct  uio;
166 #endif
167
168 #endif /* !_POSIX_SOURCE */
169 #endif /* !_SYS_TYPES_H_ */