Chameleon

Chameleon Svn Source Tree

Root/branches/rewrite/i386/include/sys/types.h

Source at commit 1146 created 12 years 11 months ago.
By azimutz, Sync with trunk (r1145). Add nVidia dev id's, 0DF4 for "GeForce GT 450M" (issue 99) and 1251 for "GeForce GTX 560M" (thanks to oSxFr33k for testing).
1/*
2 * Copyright (c) 2000-2008 Apple Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
14 *
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
17 *
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
25 *
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28/* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
29/*
30 * Copyright (c) 1982, 1986, 1991, 1993, 1994
31 *The Regents of the University of California. All rights reserved.
32 * (c) UNIX System Laboratories, Inc.
33 * All or some portions of this file are derived from material licensed
34 * to the University of California by American Telephone and Telegraph
35 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
36 * the permission of UNIX System Laboratories, Inc.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 * 3. All advertising materials mentioning features or use of this software
47 * must display the following acknowledgement:
48 *This product includes software developed by the University of
49 *California, Berkeley and its contributors.
50 * 4. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
53 *
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
64 * SUCH DAMAGE.
65 *
66 *@(#)types.h8.4 (Berkeley) 1/21/94
67 */
68
69#ifndef _SYS_TYPES_H_
70#define_SYS_TYPES_H_
71
72#ifndef __ASSEMBLER__
73#include <sys/cdefs.h>
74
75/* Machine type dependent parameters. */
76#include <machine/types.h>
77#include <sys/_types.h>
78#include <machine/endian.h>
79
80#if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE)
81typedefunsigned charu_char;
82typedefunsigned shortu_short;
83typedefunsigned intu_int;
84#ifndef _U_LONG
85typedefunsigned longu_long;
86#define _U_LONG
87#endif
88typedefunsigned shortushort;/* Sys V compatibility */
89typedefunsigned intuint;/* Sys V compatibility */
90#endif
91
92typedefu_int64_tu_quad_t;/* quads */
93typedefint64_tquad_t;
94typedefquad_t *qaddr_t;
95
96typedefchar *caddr_t;/* core address */
97typedefint32_tdaddr_t;/* disk address */
98
99typedefu_int32_tfixpt_t;/* fixed point number */
100
101
102#ifndef _IN_ADDR_T
103#define _IN_ADDR_T
104typedef__uint32_tin_addr_t;/* base type for internet address */
105#endif
106
107#ifndef _IN_PORT_T
108#define _IN_PORT_T
109typedef__uint16_tin_port_t;
110#endif
111
112
113#ifndef _KEY_T
114#define _KEY_T
115typedef__int32_tkey_t;/* IPC key (for Sys V IPC) */
116#endif
117
118#ifndef _NLINK_T
119typedef__uint16_tnlink_t;/* link count */
120#define_NLINK_T
121#endif
122
123typedefint32_tsegsz_t;/* segment size */
124typedefint32_tswblk_t;/* swap offset */
125
126
127#if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE)
128/* Major, minor numbers, dev_t's. */
129#if defined(__cplusplus)
130/*
131 * These lowercase macros tend to match member functions in some C++ code,
132 * so for C++, we must use inline functions instead.
133 */
134
135static inline __int32_t major(__uint32_t _x)
136{
137return (__int32_t)(((__uint32_t)_x >> 24) & 0xff);
138}
139
140static inline __int32_t minor(__uint32_t _x)
141{
142return (__int32_t)((_x) & 0xffffff);
143}
144#else/* !__cplusplus */
145
146#definemajor(x)((int32_t)(((u_int32_t)(x) >> 24) & 0xff))
147#defineminor(x)((int32_t)((x) & 0xffffff))
148
149#endif/* !__cplusplus */
150#endif/* !_POSIX_C_SOURCE */
151
152#ifndef_CLOCK_T
153#define_CLOCK_T
154typedef__darwin_clock_tclock_t;
155#endif
156
157#ifndef _SIZE_T
158#define _SIZE_T
159/* DO NOT REMOVE THIS COMMENT: fixincludes needs to see
160 * _GCC_SIZE_T */
161typedef __darwin_size_tsize_t;
162#endif
163
164#ifndef_SSIZE_T
165#define_SSIZE_T
166typedef__darwin_ssize_tssize_t;
167#endif
168
169#ifndef_TIME_T
170#define_TIME_T
171typedef__darwin_time_ttime_t;
172#endif
173
174
175#if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE)
176/*
177 * This code is present here in order to maintain historical backward
178 * compatability, and is intended to be removed at some point in the
179 * future; please include <sys/select.h> instead.
180 */
181#define __need_fd_set
182#include <sys/_structs.h>
183
184#defineNBBY__DARWIN_NBBY/* bits in a byte */
185#define NFDBITS__DARWIN_NFDBITS/* bits per mask */
186#definehowmany(x, y)__DARWIN_howmany(x, y)/* # y's == x bits? */
187typedef __int32_tfd_mask;
188
189/*
190 * Select uses bit masks of file descriptors in longs. These macros
191 * manipulate such bit fields (the filesystem macros use chars). The
192 * extra protection here is to permit application redefinition above
193 * the default size.
194 */
195#ifndefFD_SETSIZE
196#defineFD_SETSIZE__DARWIN_FD_SETSIZE
197#endif /* FD_SETSIZE */
198#ifndef FD_SET
199#defineFD_SET(n, p)__DARWIN_FD_SET(n, p)
200#endif /* FD_SET */
201#ifndef FD_CLR
202#defineFD_CLR(n, p)__DARWIN_FD_CLR(n, p)
203#endif /* FD_CLR */
204#ifndef FD_ISSET
205#defineFD_ISSET(n, p)__DARWIN_FD_ISSET(n, p)
206#endif /* FD_ISSET */
207#ifndef FD_ZERO
208#defineFD_ZERO(p)__DARWIN_FD_ZERO(p)
209#endif /* FD_ZERO */
210#if !defined(_POSIX_C_SOURCE) || defined(_DARWIN_C_SOURCE)
211#ifndef FD_COPY
212#defineFD_COPY(f, t)__DARWIN_FD_COPY(f, t)
213#endif /* FD_COPY */
214#endif/* (!_POSIX_C_SOURCE || _DARWIN_C_SOURCE) */
215
216
217#if defined(__STDC__) && defined(KERNEL)
218/*
219 * Forward structure declarations for function prototypes. We include the
220 * common structures that cross subsystem boundaries here; others are mostly
221 * used in the same place that the structure is defined.
222 */
223structproc;
224structpgrp;
225structucred;
226structrusage;
227structfile;
228structbuf;
229structtty;
230structuio;
231#endif
232
233#endif /* (!_POSIX_C_SOURCE || _DARWIN_C_SOURCE) */
234#endif /* __ASSEMBLER__ */
235
236
237
238
239#endif /* !_SYS_TYPES_H_ */
240

Archive Download this file

Revision: 1146