added friendly semaphore names
authorClaus Gittinger <cg@exept.de>
Fri, 24 Jan 1997 23:19:40 +0100
changeset 2263 5ba605379e43
parent 2262 4c4d810f006f
child 2264 ac5dfc03aa26
added friendly semaphore names
RecursionLock.st
--- a/RecursionLock.st	Fri Jan 24 23:11:36 1997 +0100
+++ b/RecursionLock.st	Fri Jan 24 23:19:40 1997 +0100
@@ -94,7 +94,7 @@
 !RecursionLock methodsFor:'private initialization'!
 
 initialize
-    sema := Semaphore forMutualExclusion
+    sema := Semaphore forMutualExclusion name:'rLock'
 ! !
 
 !RecursionLock methodsFor:'queries'!
@@ -158,5 +158,5 @@
 !RecursionLock class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/RecursionLock.st,v 1.15 1997-01-10 20:47:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/RecursionLock.st,v 1.16 1997-01-24 22:19:40 cg Exp $'
 ! !