mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
22 lines
775 B
C++
22 lines
775 B
C++
#include "sys/sysproto.hpp"
|
|
|
|
orbis::SysResult orbis::sys_shmdt(Thread *thread, ptr<const void> shmaddr) {
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys_shmat(Thread *thread, sint shmid,
|
|
ptr<const void> shmaddr, sint shmflg) {
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys_shmctl(Thread *thread, sint shmid, sint cmd,
|
|
ptr<struct shmid_ds> buf) {
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys_shmget(Thread *thread, key_t key, size_t size,
|
|
sint shmflg) {
|
|
return ErrorCode::NOSYS;
|
|
}
|
|
orbis::SysResult orbis::sys_shmsys(Thread *thread, sint which, sint a2, sint a3,
|
|
sint a4) {
|
|
return ErrorCode::NOSYS;
|
|
}
|