diff options
| author | Fernando S <fsahmkow27@gmail.com> | 2022-01-03 02:01:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-03 02:01:26 +0100 |
| commit | da8e0f6571095e50aa58ec5c4e3a1bd60f90c581 (patch) | |
| tree | 89fba64305ac670d588576d6dab7e4e57709a11a /src/core/hle/kernel/k_process.h | |
| parent | 3fa9702952bc90c8ab1a215009a0ee765217459e (diff) | |
| parent | 3a89723d97b8e646cde569030057777813f4371c (diff) | |
Merge pull request #7648 from bunnei/thread-pinning
core: hle: kernel: Implement thread pinning.
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() { |
