diff options
author | bunnei <bunneidev@gmail.com> | 2021-12-30 06:40:38 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2021-12-31 00:50:45 +0100 |
commit | 3a89723d97b8e646cde569030057777813f4371c (patch) | |
tree | c08f00b1ebb21c3652f0e23ab28fe06c4678aa42 /src/core/hle/kernel/k_process.h | |
parent | Merge pull request #7635 from bunnei/set-heap-size (diff) | |
download | yuzu-3a89723d97b8e646cde569030057777813f4371c.tar yuzu-3a89723d97b8e646cde569030057777813f4371c.tar.gz yuzu-3a89723d97b8e646cde569030057777813f4371c.tar.bz2 yuzu-3a89723d97b8e646cde569030057777813f4371c.tar.lz yuzu-3a89723d97b8e646cde569030057777813f4371c.tar.xz yuzu-3a89723d97b8e646cde569030057777813f4371c.tar.zst yuzu-3a89723d97b8e646cde569030057777813f4371c.zip |
Diffstat (limited to 'src/core/hle/kernel/k_process.h')
-rw-r--r-- | src/core/hle/kernel/k_process.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_process.h b/src/core/hle/kernel/k_process.h index cb93c7e24..e7c8b5838 100644 --- a/src/core/hle/kernel/k_process.h +++ b/src/core/hle/kernel/k_process.h @@ -345,8 +345,8 @@ public: bool IsSignaled() const override; - void PinCurrentThread(); - void UnpinCurrentThread(); + void PinCurrentThread(s32 core_id); + void UnpinCurrentThread(s32 core_id); void UnpinThread(KThread* thread); KLightLock& GetStateLock() { |