Skip to content
Snippets Groups Projects
Commit da67fd4f authored by John Hodge's avatar John Hodge
Browse files

Placed a comment to not the location of the blocker

parent 01fbfb42
No related merge requests found
......@@ -1044,6 +1044,9 @@ void Mutex_Release(tMutex *Mutex)
Mutex->Owner = Mutex->Waiting; // Set owner
Mutex->Waiting = Mutex->Waiting->Next; // Next!
// Reset ->LastWaiting to NULL if we have just removed the last waiting thread
// 2010-10-02 21:50 - Comemerating the death of the longest single
// blocker in the Acess2 history. REMEMBER TO
// FUCKING MAINTAIN YOUR FUCKING LISTS DIPWIT
if( Mutex->LastWaiting == Mutex->Owner )
Mutex->LastWaiting = NULL;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment