Files
Odin/core
Beau McCartney 67252ff415 make some types and procs match the c apis
procs:
| type          | old  | new (matching c api)|
| ---           | ---- | ------------------- |
| kern_return_t | u64  | c.int               |
| thread_t      | u64  | mach_port_t         |
| task_t        | u64  | mach_port_t         |
| semaphore_t   | u64  | mach_port_t         |

for mach_task_self(), return mach_port_t instead of task_t

for semaphore_signal_thread(), accept a thread_t instead of a thread_act_t
2024-10-08 12:12:21 -06:00
..
2024-09-09 18:49:13 +02:00
2024-10-05 11:26:23 +02:00
2024-02-08 15:15:16 +00:00
2024-10-01 23:27:15 +02:00
2024-09-22 00:08:07 -04:00