mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 00:15:06 +01:00
Merge pull request #408 from Subv/mutex
Mutex: Add the calling thread to the waiting list when needed
This commit is contained in:
commit
96e6b2aa50
@ -168,9 +168,9 @@ Handle CreateMutex(bool initial_locked, const std::string& name) {
|
|||||||
ResultVal<bool> Mutex::WaitSynchronization() {
|
ResultVal<bool> Mutex::WaitSynchronization() {
|
||||||
bool wait = locked;
|
bool wait = locked;
|
||||||
if (locked) {
|
if (locked) {
|
||||||
|
waiting_threads.push_back(GetCurrentThreadHandle());
|
||||||
Kernel::WaitCurrentThread(WAITTYPE_MUTEX, GetHandle());
|
Kernel::WaitCurrentThread(WAITTYPE_MUTEX, GetHandle());
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
// Lock the mutex when the first thread accesses it
|
// Lock the mutex when the first thread accesses it
|
||||||
locked = true;
|
locked = true;
|
||||||
MutexAcquireLock(this);
|
MutexAcquireLock(this);
|
||||||
|
Loading…
Reference in New Issue
Block a user