| 568 | } |
| 569 | |
| 570 | void sys_process_exit3(ppu_thread &ppu, s32 status) { |
| 571 | ppu.state += cpu_flag::wait; |
| 572 | |
| 573 | sys_process.warning("_sys_process_exit3(status=%d)", status); |
| 574 | |
| 575 | return _sys_process_exit(ppu, status, 0, 0); |
| 576 | } |
| 577 | |
| 578 | error_code sys_process_spawns_a_self2(vm::ptr<u32> pid, u32 primary_prio, |
| 579 | u64 flags, vm::ptr<void> stack, |
nothing calls this directly
no test coverage detected