summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/mutex.h
diff options
context:
space:
mode:
authorGravatar Subv2017-01-02 13:53:10 -0500
committerGravatar Subv2017-01-04 15:58:47 -0500
commitb6a0355568ee327bef8957b9a2498897b96e1278 (patch)
treec2b4ac0c55ecfc2c60495e85e88e64c0f2bb6d8f /src/core/hle/kernel/mutex.h
parentKernel/Mutex: Implemented priority inheritance. (diff)
downloadyuzu-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/mutex.h')
-rw-r--r--src/core/hle/kernel/mutex.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/mutex.h b/src/core/hle/kernel/mutex.h
index 3e6adeb17..31f920516 100644
--- a/src/core/hle/kernel/mutex.h
+++ b/src/core/hle/kernel/mutex.h
@@ -43,6 +43,7 @@ public:
43 void Acquire(Thread* thread) override; 43 void Acquire(Thread* thread) override;
44 44
45 void AddWaitingThread(SharedPtr<Thread> thread) override; 45 void AddWaitingThread(SharedPtr<Thread> thread) override;
46 void RemoveWaitingThread(Thread* thread) override;
46 47
47 void Release(); 48 void Release();
48 49