ProcessorScheduler.st
changeset 5396 92bf7d0b1b66
parent 5389 509d4228751b
child 5406 4a6995b61c0e
--- a/ProcessorScheduler.st	Mon May 22 14:02:31 2000 +0200
+++ b/ProcessorScheduler.st	Tue May 23 15:37:00 2000 +0200
@@ -10,6 +10,8 @@
  hereby transferred.
 "
 
+"{ Package: 'stx:libbasic' }"
+
 Object subclass:#ProcessorScheduler
 	instanceVariableNames:'quiescentProcessLists scheduler zombie activeProcess
 		activeProcessId currentPriority readFdArray readSemaphoreArray
@@ -2485,18 +2487,18 @@
      Using IO interrupts reduces the idle CPU usage of ST/X by some percent
      (typically 2-7%).
      Notice: 
-	some systems do not support IO-interrupts (or have a broken stdio-lib), 
-	and this feature is always disabled;
+        some systems do not support IO-interrupts (or have a broken stdio-lib), 
+        and this feature is always disabled;
      Also notice:
-	we found that in some Xlib-implementations, interrupted reads are not
-	handled correctly (especially in multi-headed applications), and this
-	fefature should be disabled to avoid a blocking XPending.
+        we found that in some Xlib-implementations, interrupted reads are not
+        handled correctly (especially in multi-headed applications), and this
+        feature should be disabled to avoid a blocking XPending.
 
      If this method is used to disable IO interrupts in multi-headed apps, 
      it should be invoked BEFORE the display event dispatcher processes are started."
 
     OperatingSystem supportsIOInterrupts ifTrue:[
-	useIOInterrupts := aBoolean
+        useIOInterrupts := aBoolean
     ].
 
     "Created: / 15.7.1998 / 13:32:29 / cg"
@@ -3109,6 +3111,6 @@
 !ProcessorScheduler class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProcessorScheduler.st,v 1.184 2000-05-18 07:18:06 ca Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProcessorScheduler.st,v 1.185 2000-05-23 13:37:00 stefan Exp $'
 ! !
 ProcessorScheduler initialize!