ProcessorScheduler.st
changeset 21114 f8153ed0902e
parent 21099 284f7688b860
child 21118 9a37c4d77ea4
--- a/ProcessorScheduler.st	Thu Dec 08 11:36:24 2016 +0100
+++ b/ProcessorScheduler.st	Thu Dec 08 11:51:59 2016 +0100
@@ -578,6 +578,16 @@
     "Processor currentPriority"
 !
 
+exitWhenNoMoreUserProcesses:aBoolean
+    "set/clear the flag, which controls if the scheduler should exit and return
+     when the last user process finishes (and therefore exit the smalltalk system).
+     A userProcess is defined as a process with a non-zero processGroup.
+     This flag is typically set for standAlone operation, to terminate the (Unix-)
+     process, when the last thread terminates."
+
+    exitWhenNoMoreUserProcesses := aBoolean
+!
+
 interruptCounter
     "for statistics: counts the overall number of interrupts"
 
@@ -899,16 +909,6 @@
 
     "Modified: / 23-09-1996 / 14:19:56 / stefan"
     "Modified: / 20-07-2012 / 18:34:48 / cg"
-!
-
-exitWhenNoMoreUserProcesses:aBoolean
-    "set/clear the flag, which controls if the scheduler should exit and return
-     when the last user process finishes (and therefore exit the smalltalk system).
-     A userProcess is defined as a process with a non-zero processGroup.
-     This flag is typically set for standAlone operation, to terminate the (Unix-)
-     process, when the last thread terminates."
-
-    exitWhenNoMoreUserProcesses := aBoolean
 ! !
 
 !ProcessorScheduler methodsFor:'initialization'!