mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
11 lines
404 B
C++
11 lines
404 B
C++
#include "sys/sysproto.hpp"
|
|
|
|
orbis::SysResult orbis::sys_kqueue(Thread *thread) { return {}; }
|
|
|
|
orbis::SysResult orbis::sys_kevent(Thread *thread, sint fd,
|
|
ptr<struct kevent> changelist, sint nchanges,
|
|
ptr<struct kevent> eventlist, sint nevents,
|
|
ptr<const struct timespec> timeout) {
|
|
return {};
|
|
}
|