1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//! This module corresponds to `mach/thread_status.h`.

use vm_types::natural_t;

pub type thread_state_t = *mut natural_t;
pub type thread_state_flavor_t = ::libc::c_int;

#[cfg(target_arch = "aarch64")]
mod aarch64 {
    use super::thread_state_flavor_t;

    pub static ARM_THREAD_STATE: thread_state_flavor_t = 1;
    pub static ARM_UNIFIED_THREAD_STATE: thread_state_flavor_t = ARM_THREAD_STATE;
    pub static ARM_VFP_STATE: thread_state_flavor_t = 2;
    pub static ARM_EXCEPTION_STATE: thread_state_flavor_t = 3;
    pub static ARM_DEBUG_STATE: thread_state_flavor_t = 4;
    pub static THREAD_STATE_NONE: thread_state_flavor_t = 5;
    pub static ARM_THREAD_STATE64: thread_state_flavor_t = 6;
    pub static ARM_EXCEPTION_STATE64: thread_state_flavor_t = 7;
    pub static ARM_DEBUG_STATE32: thread_state_flavor_t = 14;
    pub static ARM_DEBUG_STATE64: thread_state_flavor_t = 15;
    pub static ARM_NEON_STATE: thread_state_flavor_t = 16;
    pub static ARM_NEON_STATE64: thread_state_flavor_t = 17;
    pub static ARM_CPMU_STATE64: thread_state_flavor_t = 18;
}

#[cfg(target_arch = "aarch64")]
pub use self::aarch64::*;

#[cfg(target_arch = "x86_64")]
mod x86_64 {
    use super::thread_state_flavor_t;

    pub static x86_THREAD_STATE32: thread_state_flavor_t = 1;
    pub static x86_FLOAT_STATE32: thread_state_flavor_t = 2;
    pub static x86_EXCEPTION_STATE32: thread_state_flavor_t = 3;
    pub static x86_THREAD_STATE64: thread_state_flavor_t = 4;
    pub static x86_FLOAT_STATE64: thread_state_flavor_t = 5;
    pub static x86_EXCEPTION_STATE64: thread_state_flavor_t = 6;
    pub static x86_THREAD_STATE: thread_state_flavor_t = 7;
    pub static x86_FLOAT_STATE: thread_state_flavor_t = 8;
    pub static x86_EXCEPTION_STATE: thread_state_flavor_t = 9;
    pub static x86_DEBUG_STATE32: thread_state_flavor_t = 10;
    pub static x86_DEBUG_STATE64: thread_state_flavor_t = 11;
    pub static x86_DEBUG_STATE: thread_state_flavor_t = 12;
    pub static THREAD_STATE_NONE: thread_state_flavor_t = 13;
    pub static x86_AVX_STATE32: thread_state_flavor_t = 16;
    pub static x86_AVX_STATE64: thread_state_flavor_t = 17;
    pub static x86_AVX_STATE: thread_state_flavor_t = 18;
}

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub use self::x86_64::*;