From: John Hodge Date: Sat, 2 Oct 2010 13:56:44 +0000 (+0800) Subject: Placed a comment to not the location of the blocker X-Git-Tag: rel0.06~19 X-Git-Url: https://git.ucc.asn.au/?p=tpg%2Facess2.git;a=commitdiff_plain;h=da67fd4fd32d16dcd6b4cb0b63497a9925a2ef35 Placed a comment to not the location of the blocker --- diff --git a/Kernel/threads.c b/Kernel/threads.c index 3b731118..b9d59f3f 100644 --- a/Kernel/threads.c +++ b/Kernel/threads.c @@ -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;