xref: /xnu-10002.61.3/osfmk/mach/std_types.defs (revision 0f4c859e951fba394238ab619495c4e1d54d0f34)
1/*
2 * Copyright (c) 2002,2000 Apple Computer, 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/*
29 * @OSF_COPYRIGHT@
30 */
31/*
32 * Mach Operating System
33 * Copyright (c) 1991,1990,1989,1988 Carnegie Mellon University
34 * All Rights Reserved.
35 *
36 * Permission to use, copy, modify and distribute this software and its
37 * documentation is hereby granted, provided that both the copyright
38 * notice and this permission notice appear in all copies of the
39 * software, derivative works or modified versions, and any portions
40 * thereof, and that both notices appear in supporting documentation.
41 *
42 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
43 * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
44 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
45 *
46 * Carnegie Mellon requests users of this software to return to
47 *
48 *  Software Distribution Coordinator  or  [email protected]
49 *  School of Computer Science
50 *  Carnegie Mellon University
51 *  Pittsburgh PA 15213-3890
52 *
53 * any improvements or extensions that they make and grant Carnegie Mellon
54 * the rights to redistribute these changes.
55 */
56/*
57 */
58/*
59 *	Mach kernel standard interface type declarations
60 */
61
62#ifndef	_MACH_STD_TYPES_DEFS_
63#define _MACH_STD_TYPES_DEFS_
64
65import <Availability.h>;
66
67/* from ISO/IEC 988:1999 spec */
68/* 7.18.1.1 Exact-width integer types */
69
70type int8_t = MACH_MSG_TYPE_INTEGER_8;
71type uint8_t = MACH_MSG_TYPE_INTEGER_8;
72type int16_t = MACH_MSG_TYPE_INTEGER_16;
73type uint16_t = MACH_MSG_TYPE_INTEGER_16;
74type int32_t = MACH_MSG_TYPE_INTEGER_32;
75type uint32_t = MACH_MSG_TYPE_INTEGER_32;
76type int64_t = MACH_MSG_TYPE_INTEGER_64;
77type uint64_t = MACH_MSG_TYPE_INTEGER_64;
78
79/*
80 * Legacy fixed-length Mach types which should
81 * be replaced with the Standard types from above.
82 */
83type int32 = int32_t;
84type unsigned32 = uint32_t;
85type int64 = int64_t;
86type unsigned64 = uint64_t;
87
88/*
89 * Other fixed length Mach types.
90 */
91type char = MACH_MSG_TYPE_CHAR;
92type boolean_t = MACH_MSG_TYPE_BOOLEAN;
93
94#include <mach/machine/machine_types.defs>
95
96type kern_return_t = int;
97
98type pointer_t = ^array[] of MACH_MSG_TYPE_BYTE
99	ctype: vm_offset_t;
100
101
102type mach_port_t = MACH_MSG_TYPE_COPY_SEND;
103type mach_port_array_t = array[] of mach_port_t;
104
105type mach_port_name_t = MACH_MSG_TYPE_PORT_NAME;
106type mach_port_name_array_t = array[] of mach_port_name_t;
107
108type mach_port_right_t = natural_t;
109
110type mach_port_type_t = natural_t;
111type mach_port_type_array_t = array[] of mach_port_type_t;
112
113type mach_port_urefs_t = natural_t;
114type mach_port_delta_t = integer_t;
115type mach_port_seqno_t = natural_t;
116type mach_port_mscount_t = unsigned;
117type mach_port_msgcount_t = unsigned;
118type mach_port_rights_t = unsigned;
119type mach_msg_id_t = integer_t;
120type mach_msg_size_t = natural_t;
121type mach_msg_type_name_t = unsigned;
122type mach_msg_options_t = integer_t;
123
124type mach_port_move_receive_t =		MACH_MSG_TYPE_MOVE_RECEIVE
125	ctype: mach_port_t;
126type mach_port_copy_send_t =		MACH_MSG_TYPE_COPY_SEND
127	ctype: mach_port_t;
128type mach_port_make_send_t =		MACH_MSG_TYPE_MAKE_SEND
129	ctype: mach_port_t;
130type mach_port_move_send_t =		MACH_MSG_TYPE_MOVE_SEND
131	ctype: mach_port_t;
132type mach_port_make_send_once_t =	MACH_MSG_TYPE_MAKE_SEND_ONCE
133	ctype: mach_port_t;
134type mach_port_move_send_once_t =	MACH_MSG_TYPE_MOVE_SEND_ONCE
135	ctype: mach_port_t;
136
137type mach_port_receive_t =		MACH_MSG_TYPE_PORT_RECEIVE
138	ctype: mach_port_t;
139type mach_port_send_t =			MACH_MSG_TYPE_PORT_SEND
140	ctype: mach_port_t;
141type mach_port_send_once_t =		MACH_MSG_TYPE_PORT_SEND_ONCE
142	ctype: mach_port_t;
143
144type mach_port_poly_t = polymorphic
145	ctype: mach_port_t;
146
147import <mach/std_types.h>;
148import <mach/mig.h>;
149
150#endif	/* _MACH_STD_TYPES_DEFS_ */
151
152/* vim: set ft=c : */
153