diff options
| author | Colin Davidson <colrdavidson@gmail.com> | 2025-12-01 16:38:10 -0800 |
|---|---|---|
| committer | Colin Davidson <colrdavidson@gmail.com> | 2025-12-01 16:38:10 -0800 |
| commit | a76c902b79eed35e38ae3610ff49a72e0ac88599 (patch) | |
| tree | 96d8f15e9b7bedf6fa55f578ef80a168d68791b6 | |
| parent | 7e9ceaa281f52488398c42fb803fb14bcd8f76bb (diff) | |
fix thread_act_t size
| -rw-r--r-- | core/sys/darwin/mach_darwin.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/darwin/mach_darwin.odin b/core/sys/darwin/mach_darwin.odin index 19515fe87..9520e0e00 100644 --- a/core/sys/darwin/mach_darwin.odin +++ b/core/sys/darwin/mach_darwin.odin @@ -11,7 +11,7 @@ task_t :: mach_port_t semaphore_t :: distinct u64 kern_return_t :: distinct c.int -thread_act_t :: distinct u64 +thread_act_t :: distinct u32 thread_state_t :: distinct ^u32 thread_list_t :: [^]thread_act_t vm_region_recurse_info_t :: distinct ^i32 |