diff options
| author | 2017-01-02 13:53:10 -0500 | |
|---|---|---|
| committer | 2017-01-04 15:58:47 -0500 | |
| commit | b6a0355568ee327bef8957b9a2498897b96e1278 (patch) | |
| tree | c2b4ac0c55ecfc2c60495e85e88e64c0f2bb6d8f /src/core/hle/kernel/kernel.h | |
| parent | Kernel/Mutex: Implemented priority inheritance. (diff) | |
| download | yuzu-b6a0355568ee327bef8957b9a2498897b96e1278.tar.gz yuzu-b6a0355568ee327bef8957b9a2498897b96e1278.tar.xz yuzu-b6a0355568ee327bef8957b9a2498897b96e1278.zip | |
Kernel/Mutex: Update a mutex priority when a thread stops waiting on it.
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
| -rw-r--r-- | src/core/hle/kernel/kernel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index 2680f89c9..05097824b 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -151,7 +151,7 @@ public: | |||
| 151 | * Removes a thread from waiting on this object (e.g. if it was resumed already) | 151 | * Removes a thread from waiting on this object (e.g. if it was resumed already) |
| 152 | * @param thread Pointer to thread to remove | 152 | * @param thread Pointer to thread to remove |
| 153 | */ | 153 | */ |
| 154 | void RemoveWaitingThread(Thread* thread); | 154 | virtual void RemoveWaitingThread(Thread* thread); |
| 155 | 155 | ||
| 156 | /** | 156 | /** |
| 157 | * Wake up all threads waiting on this object that can be awoken, in priority order, | 157 | * Wake up all threads waiting on this object that can be awoken, in priority order, |