class: ProcessorScheduler
authorStefan Vogel <sv@exept.de>
Fri, 08 Feb 2013 22:33:05 +0100
changeset 14780 113129e94917
parent 14779 4657463cd9f3
child 14781 2b043945b97a
class: ProcessorScheduler comment/format in: #addIdleBlock:
ProcessorScheduler.st
--- a/ProcessorScheduler.st	Fri Feb 08 22:13:20 2013 +0100
+++ b/ProcessorScheduler.st	Fri Feb 08 22:33:05 2013 +0100
@@ -592,7 +592,7 @@
      Idle blocks are evaluated whenever no other process is runnable,
      and no events are pending.
      Use of idle blocks is not recommended, use a low priority processes
-     instead, which has the same effect. Idle blcoks are still included
+     instead, which has the same effect. Idle blocks are still included
      to support background actions in pure-event systems, where no processes
      are available.
      ATTENTION: Support for idle-blocks may vanish."
@@ -601,7 +601,7 @@
 
     wasBlocked := OperatingSystem blockInterrupts.
     idleActions isNil ifTrue:[
-	idleActions := OrderedCollection new
+        idleActions := OrderedCollection new
     ].
     idleActions add:aBlock.
     wasBlocked ifFalse:[OperatingSystem unblockInterrupts].
@@ -3356,11 +3356,11 @@
 !ProcessorScheduler class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProcessorScheduler.st,v 1.264 2013-02-08 18:41:42 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProcessorScheduler.st,v 1.265 2013-02-08 21:33:05 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/ProcessorScheduler.st,v 1.264 2013-02-08 18:41:42 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProcessorScheduler.st,v 1.265 2013-02-08 21:33:05 stefan Exp $'
 ! !