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 VM_TYPE_SAFE_UNSAFE(vm_offset_t, pointer_ut); 100 101type mach_port_t = MACH_MSG_TYPE_COPY_SEND; 102type mach_port_array_t = array[] of mach_port_t; 103 104type mach_port_name_t = MACH_MSG_TYPE_PORT_NAME; 105type mach_port_name_array_t = array[] of mach_port_name_t; 106 107type mach_port_right_t = natural_t; 108 109type mach_port_type_t = natural_t; 110type mach_port_type_array_t = array[] of mach_port_type_t; 111 112type mach_port_urefs_t = natural_t; 113type mach_port_delta_t = integer_t; 114type mach_port_seqno_t = natural_t; 115type mach_port_mscount_t = unsigned; 116type mach_port_msgcount_t = unsigned; 117type mach_port_rights_t = unsigned; 118type mach_msg_id_t = integer_t; 119type mach_msg_size_t = natural_t; 120type mach_msg_type_name_t = unsigned; 121type mach_msg_options_t = integer_t; 122 123type mach_port_move_receive_t = MACH_MSG_TYPE_MOVE_RECEIVE 124 ctype: mach_port_t; 125type mach_port_copy_send_t = MACH_MSG_TYPE_COPY_SEND 126 ctype: mach_port_t; 127type mach_port_make_send_t = MACH_MSG_TYPE_MAKE_SEND 128 ctype: mach_port_t; 129type mach_port_move_send_t = MACH_MSG_TYPE_MOVE_SEND 130 ctype: mach_port_t; 131type mach_port_make_send_once_t = MACH_MSG_TYPE_MAKE_SEND_ONCE 132 ctype: mach_port_t; 133type mach_port_move_send_once_t = MACH_MSG_TYPE_MOVE_SEND_ONCE 134 ctype: mach_port_t; 135 136type mach_port_receive_t = MACH_MSG_TYPE_PORT_RECEIVE 137 ctype: mach_port_t; 138type mach_port_send_t = MACH_MSG_TYPE_PORT_SEND 139 ctype: mach_port_t; 140type mach_port_send_once_t = MACH_MSG_TYPE_PORT_SEND_ONCE 141 ctype: mach_port_t; 142 143type mach_port_poly_t = polymorphic 144 ctype: mach_port_t; 145 146import <mach/std_types.h>; 147import <mach/mig.h>; 148 149#endif /* _MACH_STD_TYPES_DEFS_ */ 150 151/* vim: set ft=c : */ 152