mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
Return error code in sys_ppu_thread_get_join_state
This commit is contained in:
parent
660bfeabae
commit
56b7581ade
2 changed files with 8 additions and 2 deletions
|
@ -188,11 +188,17 @@ error_code sys_ppu_thread_detach(u32 thread_id)
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
void sys_ppu_thread_get_join_state(ppu_thread& ppu, vm::ptr<s32> isjoinable)
|
||||
error_code sys_ppu_thread_get_join_state(ppu_thread& ppu, vm::ptr<s32> isjoinable)
|
||||
{
|
||||
sys_ppu_thread.trace("sys_ppu_thread_get_join_state(isjoinable=*0x%x)", isjoinable);
|
||||
|
||||
if (!isjoinable)
|
||||
{
|
||||
return CELL_EFAULT;
|
||||
}
|
||||
|
||||
*isjoinable = ppu.joiner != -1;
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
error_code sys_ppu_thread_set_priority(ppu_thread& ppu, u32 thread_id, s32 prio)
|
||||
|
|
|
@ -58,7 +58,7 @@ void _sys_ppu_thread_exit(ppu_thread& ppu, u64 errorcode);
|
|||
void sys_ppu_thread_yield(ppu_thread& ppu);
|
||||
error_code sys_ppu_thread_join(ppu_thread& ppu, u32 thread_id, vm::ptr<u64> vptr);
|
||||
error_code sys_ppu_thread_detach(u32 thread_id);
|
||||
void sys_ppu_thread_get_join_state(ppu_thread& ppu, vm::ptr<s32> isjoinable);
|
||||
error_code sys_ppu_thread_get_join_state(ppu_thread& ppu, vm::ptr<s32> isjoinable); // Error code is ignored by the library
|
||||
error_code sys_ppu_thread_set_priority(ppu_thread& ppu, u32 thread_id, s32 prio);
|
||||
error_code sys_ppu_thread_get_priority(u32 thread_id, vm::ptr<s32> priop);
|
||||
error_code sys_ppu_thread_get_stack_information(ppu_thread& ppu, vm::ptr<sys_ppu_thread_stack_t> sp);
|
||||
|
|
Loading…
Add table
Reference in a new issue