Block.st
changeset 348 5ac1b6b43600
parent 328 7b542c0bf1dd
child 359 b8df66983eff
--- a/Block.st	Wed May 17 14:17:43 1995 +0200
+++ b/Block.st	Thu May 18 17:10:35 1995 +0200
@@ -21,7 +21,7 @@
 COPYRIGHT (c) 1989 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libbasic/Block.st,v 1.34 1995-05-01 21:28:12 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Block.st,v 1.35 1995-05-18 15:08:46 claus Exp $
 '!
 
 !Block class methodsFor:'documentation'!
@@ -42,7 +42,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libbasic/Block.st,v 1.34 1995-05-01 21:28:12 claus Exp $
+$Header: /cvs/stx/stx/libbasic/Block.st,v 1.35 1995-05-18 15:08:46 claus Exp $
 "
 !
 
@@ -650,7 +650,9 @@
 
 valueUninterruptably
     "evaluate the receiver with interrupts blocked.
-     This does not prevent preemption by higher priority processes."
+     This does not prevent preemption by a higher priority processes
+     if any becomes runnable due to the evaluation of the receiver
+     (i.e. if a semaphore is signalled)."
 
     Processor activeProcess uninterruptablyDo:self
 !