]>
Commit | Line | Data |
---|---|---|
1c79356b | 1 | /* |
fe8ab488 | 2 | * Copyright (c) 2012-2013 Apple Inc. All rights reserved. |
5d5c5d0d | 3 | * |
2d21ac55 | 4 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
1c79356b | 5 | * |
2d21ac55 A |
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. | |
8f6c56a5 | 14 | * |
2d21ac55 A |
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 | |
8f6c56a5 A |
20 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
21 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
2d21ac55 A |
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. | |
8f6c56a5 | 25 | * |
2d21ac55 | 26 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ |
1c79356b | 27 | */ |
0b4e3aa0 | 28 | |
fe8ab488 A |
29 | #ifndef _ATM_ATM_TYPES_H_ |
30 | #define _ATM_ATM_TYPES_H_ | |
1c79356b | 31 | |
fe8ab488 A |
32 | #include <stdint.h> |
33 | #include <mach/mach_types.h> | |
0b4e3aa0 | 34 | |
fe8ab488 A |
35 | #define MACH_VOUCHER_ATTR_ATM_NULL ((mach_voucher_attr_recipe_command_t)501) |
36 | #define MACH_VOUCHER_ATTR_ATM_CREATE ((mach_voucher_attr_recipe_command_t)510) | |
37 | #define MACH_VOUCHER_ATTR_ATM_REGISTER ((mach_voucher_attr_recipe_command_t)511) | |
0b4e3aa0 | 38 | |
fe8ab488 A |
39 | typedef uint32_t atm_action_t; |
40 | #define ATM_ACTION_DISCARD 0x1 | |
41 | #define ATM_ACTION_COLLECT 0x2 | |
42 | #define ATM_ACTION_LOGFAIL 0x3 | |
43 | #define ATM_FIND_MIN_SUB_AID 0x4 | |
44 | #define ATM_ACTION_UNREGISTER 0x5 | |
3e170ce0 A |
45 | #define ATM_ACTION_REGISTER 0x6 |
46 | #define ATM_ACTION_GETSUBAID 0x7 | |
0b4e3aa0 | 47 | |
3e170ce0 | 48 | typedef uint64_t atm_guard_t; |
fe8ab488 | 49 | typedef uint64_t aid_t; |
3e170ce0 A |
50 | |
51 | /* Deprecated. will be removed soon */ | |
fe8ab488 A |
52 | typedef uint64_t subaid_t; |
53 | typedef uint64_t mailbox_offset_t; | |
54 | #define SUB_AID_MAX (UINT64_MAX) | |
1c79356b | 55 | |
fe8ab488 A |
56 | typedef uint64_t atm_aid_t; |
57 | typedef uint32_t atm_subaid32_t; | |
58 | typedef uint64_t mach_atm_subaid_t; /* Used for mach based apis. */ | |
59 | typedef uint64_t atm_mailbox_offset_t; | |
1c79356b | 60 | |
1c79356b | 61 | |
fe8ab488 A |
62 | typedef mach_port_t atm_memory_descriptor_t; |
63 | typedef atm_memory_descriptor_t *atm_memory_descriptor_array_t; | |
64 | typedef uint64_t *atm_memory_size_array_t; | |
1c79356b | 65 | |
fe8ab488 | 66 | #define ATM_SUBAID32_MAX (UINT32_MAX) |
39037602 A |
67 | #define ATM_TRACE_DISABLE (0x0100) /* OS_TRACE_MODE_DISABLE - Do not initialize the new logging*/ |
68 | #define ATM_TRACE_OFF (0x0400) /* OS_TRACE_MODE_OFF - Don't drop log messages to new log buffers */ | |
cc8bc92a | 69 | #define ATM_ENABLE_LEGACY_LOGGING (0x20000000) /* OS_TRACE_SYSTEMMODE_LEGACY_LOGGING - Enable legacy logging */ |
1c79356b | 70 | |
fe8ab488 | 71 | #endif /* _ATM_ATM_TYPES_H_ */ |
39037602 | 72 |