summaryrefslogtreecommitdiff
path: root/tool/headers/mach/arm/vm_types.h
blob: 7b2eac30b83ab3a742d67a50bdd8249f6fcfc481 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef _MACH_ARM_VM_TYPES_H_
#define _MACH_ARM_VM_TYPES_H_

#include <arm/_types.h>
#include <stdint.h>

typedef __darwin_natural_t natural_t;
typedef int integer_t;

typedef natural_t vm_offset_t;
typedef natural_t vm_size_t;

typedef uint64_t mach_vm_address_t;
typedef uint64_t mach_vm_offset_t;
typedef uint64_t mach_vm_size_t;

#define MACH_MSG_TYPE_INTEGER_T MACH_MSG_TYPE_INTEGER_32

#endif