mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
fix pipe fix socketpair fix bridge fix evf_wait with timeout fix umtx_op(0x17) implement ipmi evf stub sched_get_priority_max/min stub sys_rtprio_thread implement sys_yield emit event on signal stub ajm register/unregister ioctls stub av_control ioctl hack removal
8 lines
147 B
C++
8 lines
147 B
C++
#include "sys/sysproto.hpp"
|
|
#include <thread>
|
|
|
|
orbis::SysResult orbis::sys_yield(Thread *thread) {
|
|
std::this_thread::yield();
|
|
return {};
|
|
}
|