Another attempted fix
This commit is contained in:
parent
5becefcfd4
commit
537c04ac14
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ public:
|
|||
*wait = locked;
|
||||
if (locked) {
|
||||
Handle thread = GetCurrentThreadHandle();
|
||||
if (std::find(waiting_threads.begin(), waiting_threads.end(), thread) == waiting_threads.end()) {
|
||||
if (find(waiting_threads.begin(), waiting_threads.end(), thread) == waiting_threads.end()) {
|
||||
waiting_threads.push_back(thread);
|
||||
}
|
||||
Kernel::WaitCurrentThread(WAITTYPE_EVENT);
|
||||
|
|
Loading…
Reference in a new issue