Example #1
0
s32 sys_ppu_thread_set_priority(u64 thread_id, s32 prio)
{
	sysPrxForUser->Log("sys_ppu_thread_set_priority(thread_id=%lld, prio=%d)", thread_id, prio);

	CPUThread* thr = Emu.GetCPU().GetThread(thread_id);
	if(!thr) return CELL_ESRCH;

	thr->SetPrio(prio);

	return CELL_OK;
}
Example #2
0
int sys_ppu_thread_set_priority(u32 thread_id, int prio)
{
    sysPrxForUser.Warning("sys_ppu_thread_set_priority(thread_id=%d, prio=%d)", thread_id, prio);

    CPUThread* thr = Emu.GetCPU().GetThread(thread_id);
    if(!thr) return CELL_ESRCH;

    thr->SetPrio(prio);

    return CELL_OK;
}