]> git.saurik.com Git - apple/libc.git/blob - mach/headers/port_obj.h
2b30528ce3d8735f7fe62958fa8a82d02fc21001
[apple/libc.git] / mach / headers / port_obj.h
1 /*
2 * Copyright (c) 2003 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_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. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23 /*
24 * @OSF_COPYRIGHT@
25 */
26
27 /*
28 * Define a service to map from a kernel-generated port name
29 * to server-defined "type" and "value" data to be associated
30 * with the port.
31 */
32
33 #ifndef PORT_OBJ_H
34 #define PORT_OBJ_H
35
36 #include <mach/port.h>
37
38 struct port_obj_tentry {
39 void *pos_value;
40 int pos_type;
41 };
42
43 #include <sys/cdefs.h>
44
45 __BEGIN_DECLS
46 extern void port_obj_init(int);
47 extern struct port_obj_tentry *port_obj_table;
48 extern int port_obj_table_size;
49 __END_DECLS
50
51 #ifndef PORT_OBJ_ASSERT
52
53 #define port_set_obj_value_type(pname, value, type) \
54 do { \
55 int ndx; \
56 \
57 if (!port_obj_table) \
58 port_obj_init(port_obj_table_size); \
59 ndx = MACH_PORT_INDEX(pname); \
60 port_obj_table[ndx].pos_value = (value); \
61 port_obj_table[ndx].pos_type = (type); \
62 } while (0)
63
64 #define port_get_obj_value(pname) \
65 (port_obj_table[MACH_PORT_INDEX(pname)].pos_value)
66
67 #define port_get_obj_type(pname) \
68 (port_obj_table[MACH_PORT_INDEX(pname)].pos_type)
69
70 #else /* PORT_OBJ_ASSERT */
71
72 #define port_set_obj_value_type(pname, value, type) \
73 do { \
74 int ndx; \
75 \
76 if (!port_obj_table) \
77 port_obj_init(port_obj_table_size); \
78 ndx = MACH_PORT_INDEX(pname); \
79 assert(ndx > 0); \
80 assert(ndx < port_obj_table_size); \
81 port_obj_table[ndx].pos_value = (value); \
82 port_obj_table[ndx].pos_type = (type); \
83 } while (0)
84
85 #define port_get_obj_value(pname) \
86 ((MACH_PORT_INDEX(pname) < (unsigned)port_obj_table_size) ? \
87 port_obj_table[MACH_PORT_INDEX(pname)].pos_value : \
88 (panic("port_get_obj_value: index too big"), (void *)-1))
89
90 #define port_get_obj_type(pname) \
91 ((MACH_PORT_INDEX(pname) < (unsigned)port_obj_table_size) ? \
92 port_obj_table[MACH_PORT_INDEX(pname)].pos_type : \
93 (panic("port_get_obj_type: index too big"), -1))
94
95 #endif /* PORT_OBJ_ASSERT */
96
97 #endif /* PORT_OBJ_H */