checkin from browser
authorClaus Gittinger <cg@exept.de>
Thu, 21 Aug 1997 16:44:34 +0200
changeset 560 feae8d3ae643
parent 559 61012867ebed
child 561 f00675b5531f
checkin from browser
Monitor.st
--- a/Monitor.st	Mon Aug 18 12:33:51 1997 +0200
+++ b/Monitor.st	Thu Aug 21 16:44:34 1997 +0200
@@ -18,7 +18,7 @@
 	category:'Kernel-Processes'
 !
 
-!Monitor  class methodsFor:'documentation'!
+!Monitor class methodsFor:'documentation'!
 
 copyright
 "
@@ -101,7 +101,7 @@
 "
 ! !
 
-!Monitor  class methodsFor:'instance creation'!
+!Monitor class methodsFor:'instance creation'!
 
 new
     ^ self basicNew initialize
@@ -154,7 +154,7 @@
     |thisProcess|
 
     count == 0 ifTrue:[
-        'MONITOR: already left' errorPrintCR.
+        'MONITOR [info]: already left' errorPrintCR.
         ^ self
     ].
 
@@ -176,7 +176,7 @@
     owningProcess := nil.
     sema signal.
 
-    "Modified: 6.7.1996 / 22:30:47 / cg"
+    "Modified: 21.8.1997 / 16:44:17 / cg"
 ! !
 
 !Monitor methodsFor:'initialization'!
@@ -210,8 +210,8 @@
     "Created: 3.5.1996 / 18:08:38 / cg"
 ! !
 
-!Monitor  class methodsFor:'documentation'!
+!Monitor class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Monitor.st,v 1.6 1997-01-24 22:19:39 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Monitor.st,v 1.7 1997-08-21 14:44:34 cg Exp $'
 ! !