class: RecursionLock
authorStefan Vogel <sv@exept.de>
Fri, 11 Sep 2015 10:49:16 +0200
changeset 18748 f7400cf1f488
parent 18745 89ae65c02a3e
child 18749 d6947ad2feaf
child 18751 be7fcd0a3f23
class: RecursionLock comment/format in: #forMutualExclusion
RecursionLock.st
--- a/RecursionLock.st	Wed Sep 09 11:21:58 2015 +0200
+++ b/RecursionLock.st	Fri Sep 11 10:49:16 2015 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1995 by Claus Gittinger
 	      All Rights Reserved
@@ -11,6 +13,8 @@
 "
 "{ Package: 'stx:libbasic' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#RecursionLock
 	instanceVariableNames:'process sema'
 	classVariableNames:''
@@ -92,7 +96,7 @@
 !RecursionLock class methodsFor:'instance creation'!
 
 forMutualExclusion
-    "same as new, for easy exchangability with reular mutual-exclusion Semaphores."
+    "same as new, for easy exchangability with regular mutual-exclusion Semaphores."
 
     ^ self new 
 !
@@ -342,10 +346,10 @@
 !RecursionLock class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/RecursionLock.st,v 1.41 2014-10-21 19:19:55 stefan Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/RecursionLock.st,v 1.41 2014-10-21 19:19:55 stefan Exp $'
+    ^ '$Header$'
 ! !