]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
91447636 | 2 | * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved. |
1c79356b A |
3 | * |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
e5568f75 A |
6 | * The contents of this file constitute Original Code as defined in and |
7 | * are subject to the Apple Public Source License Version 1.1 (the | |
8 | * "License"). You may not use this file except in compliance with the | |
9 | * License. Please obtain a copy of the License at | |
10 | * http://www.apple.com/publicsource and read it before using this file. | |
1c79356b | 11 | * |
e5568f75 A |
12 | * This Original Code and all software distributed under the License are |
13 | * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
1c79356b A |
14 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
15 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
e5568f75 A |
16 | * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the |
17 | * License for the specific language governing rights and limitations | |
18 | * under the License. | |
1c79356b A |
19 | * |
20 | * @APPLE_LICENSE_HEADER_END@ | |
21 | */ | |
22 | /* | |
23 | * @OSF_COPYRIGHT@ | |
24 | */ | |
91447636 | 25 | |
1c79356b A |
26 | /* |
27 | * Define Basic IPC types available to callers. | |
28 | * These are not intended to be used directly, but | |
29 | * are used to define other types available through | |
30 | * port.h and mach_types.h for in-kernel entities. | |
31 | */ | |
91447636 A |
32 | |
33 | #ifndef _IPC_IPC_TYPES_H_ | |
34 | #define _IPC_IPC_TYPES_H_ | |
1c79356b | 35 | |
9bccf70c A |
36 | #include <mach/port.h> |
37 | #include <mach/message.h> | |
38 | #include <mach/mach_types.h> | |
1c79356b | 39 | |
91447636 A |
40 | #ifdef MACH_KERNEL_PRIVATE |
41 | ||
42 | typedef natural_t ipc_table_index_t; /* index into tables */ | |
43 | typedef natural_t ipc_table_elems_t; /* size of tables */ | |
44 | typedef natural_t ipc_entry_bits_t; | |
45 | typedef ipc_table_elems_t ipc_entry_num_t; /* number of entries */ | |
46 | typedef ipc_table_index_t ipc_port_request_index_t; | |
47 | ||
48 | typedef mach_port_name_t mach_port_index_t; /* index values */ | |
49 | typedef mach_port_name_t mach_port_gen_t; /* generation numbers */ | |
50 | ||
51 | typedef struct ipc_entry *ipc_entry_t; | |
52 | typedef struct ipc_tree_entry *ipc_tree_entry_t; | |
53 | typedef struct ipc_table_size *ipc_table_size_t; | |
54 | typedef struct ipc_port_request *ipc_port_request_t; | |
55 | typedef struct ipc_pset *ipc_pset_t; | |
56 | typedef struct ipc_kmsg *ipc_kmsg_t; | |
57 | ||
58 | #define IE_NULL ((ipc_entry_t) 0) | |
59 | #define ITE_NULL ((ipc_tree_entry_t) 0) | |
60 | #define ITS_NULL ((ipc_table_size_t) 0) | |
61 | #define ITS_SIZE_NONE ((ipc_table_elems_t) -1) | |
62 | #define IPR_NULL ((ipc_port_request_t) 0) | |
63 | #define IPS_NULL ((ipc_pset_t) 0) | |
64 | #define IKM_NULL ((ipc_kmsg_t) 0) | |
65 | ||
66 | typedef void (*mach_msg_continue_t)(mach_msg_return_t); /* after wakeup */ | |
67 | ||
68 | #else /* MACH_KERNEL_PRIVATE */ | |
1c79356b | 69 | |
1c79356b | 70 | struct ipc_object ; |
1c79356b | 71 | |
91447636 | 72 | #endif /* MACH_KERNEL_PRIVATE */ |
1c79356b A |
73 | |
74 | typedef struct ipc_object *ipc_object_t; | |
1c79356b A |
75 | |
76 | #define IPC_OBJECT_NULL ((ipc_object_t) 0) | |
77 | #define IPC_OBJECT_DEAD ((ipc_object_t)~0) | |
78 | #define IPC_OBJECT_VALID(io) (((io) != IPC_OBJECT_NULL) && \ | |
79 | ((io) != IPC_OBJECT_DEAD)) | |
80 | ||
91447636 | 81 | #endif /* _IPC_IPC_TYPES_H_ */ |