mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-09 00:14:56 +00:00
Fixed compilation errors
This commit is contained in:
parent
98d3e30a22
commit
fa2db8ed4b
11 changed files with 44 additions and 42 deletions
|
|
@ -135,7 +135,7 @@ orbis::SysResult close(orbis::Thread *thread, orbis::sint fd) {
|
|||
#define IOC_DIRMASK (IOC_VOID | IOC_OUT | IOC_IN)
|
||||
|
||||
#define _IOC(inout, group, num, len) \
|
||||
((unsigned long)((inout) | (((len)&IOCPARM_MASK) << 16) | ((group) << 8) | \
|
||||
((unsigned long)((inout) | (((len) & IOCPARM_MASK) << 16) | ((group) << 8) | \
|
||||
(num)))
|
||||
#define _IO(g, n) _IOC(IOC_VOID, (g), (n), 0)
|
||||
#define _IOWINT(g, n) _IOC(IOC_VOID, (g), (n), sizeof(int))
|
||||
|
|
@ -498,7 +498,7 @@ SysResult thr_kill2(orbis::Thread *thread, orbis::pid_t pid, orbis::slong id,
|
|||
return ErrorCode::NOTSUP;
|
||||
}
|
||||
SysResult thr_suspend(orbis::Thread *thread,
|
||||
orbis::ptr<const timespec> timeout) {
|
||||
orbis::ptr<const orbis::timespec> timeout) {
|
||||
return ErrorCode::NOTSUP;
|
||||
}
|
||||
SysResult thr_wake(orbis::Thread *thread, orbis::slong id) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue