mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 08:48:32 -05:00
svc: added GetThreadPriority and SetThreadPriority, added (incomplete) DuplicateHandle support
This commit is contained in:
@ -65,6 +65,12 @@ Handle GetCurrentThreadHandle();
|
||||
/// Put current thread in a wait state - on WaitSynchronization
|
||||
void WaitThread_Synchronization();
|
||||
|
||||
/// Get the priority of the thread specified by handle
|
||||
u32 GetThreadPriority(const Handle handle);
|
||||
|
||||
/// Set the priority of the thread specified by handle
|
||||
Result SetThreadPriority(Handle handle, s32 priority);
|
||||
|
||||
/// Initialize threading
|
||||
void ThreadingInit();
|
||||
|
||||
|
Reference in New Issue
Block a user