From da67fd4fd32d16dcd6b4cb0b63497a9925a2ef35 Mon Sep 17 00:00:00 2001
From: John Hodge <tpg@mutabah.net>
Date: Sat, 2 Oct 2010 21:56:44 +0800
Subject: [PATCH] Placed a comment to not the location of the blocker

---
 Kernel/threads.c | 3 +++
 1 file changed, 3 insertions(+)

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;
 		
-- 
GitLab