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
//! This module corresponds to `mach/thread_act.defs`.

use crate::exception_types::{exception_behavior_t, exception_mask_t};
use crate::kern_return::kern_return_t;
use crate::mach_types::{thread_act_t, thread_port_t};
use crate::message::mach_msg_type_number_t;
use crate::port::mach_port_t;
use crate::thread_status::{thread_state_flavor_t, thread_state_t};

extern "C" {
    pub fn thread_get_state(
        target_act:      thread_act_t,
        flavor:          thread_state_flavor_t,
        new_state:       thread_state_t,
        new_state_count: *mut mach_msg_type_number_t,
    ) -> kern_return_t;

    pub fn thread_set_state(
        target_act:   thread_port_t,
        flavor:       thread_state_flavor_t,
        new_state:    thread_state_t,
        new_stateCnt: mach_msg_type_number_t,
    ) -> kern_return_t;

    pub fn thread_set_exception_ports(
        thread:         thread_port_t,
        exception_mask: exception_mask_t,
        new_port:       mach_port_t,
        behavior:       exception_behavior_t,
        new_flavor:     thread_state_flavor_t,
    ) -> kern_return_t;

    pub fn thread_suspend(
        target_act: thread_act_t,
    ) -> kern_return_t;

    pub fn thread_resume(
        target_act: thread_act_t,
    ) -> kern_return_t;
}