mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 23:58:17 -05:00
kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequest
This commit is contained in:
@ -36,6 +36,11 @@ public:
|
||||
inline bool IsWaiting() const { return (status & THREADSTATUS_WAIT) != 0; }
|
||||
inline bool IsSuspended() const { return (status & THREADSTATUS_SUSPEND) != 0; }
|
||||
|
||||
/// Synchronize kernel object
|
||||
Result SyncRequest() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
ThreadContext context;
|
||||
|
||||
u32 status;
|
||||
|
Reference in New Issue
Block a user