diff -r 36c63754670a -r 3e210d26d0d8 ProcessorScheduler.st --- a/ProcessorScheduler.st Fri Jan 10 19:14:02 1997 +0100 +++ b/ProcessorScheduler.st Fri Jan 10 19:17:32 1997 +0100 @@ -202,7 +202,7 @@ id notNil ifTrue:[ 'Processor [warning]: terminating thread ' errorPrint. id errorPrint. - ' (no longer refd)' errorPrintNL. + ' (no longer refd)' errorPrintCR. self threadDestroy:id. KnownProcessIds at:index put:nil. @@ -213,7 +213,7 @@ ] "Created: 7.1.1997 / 16:45:42 / stefan" - "Modified: 10.1.1997 / 18:03:07 / cg" + "Modified: 10.1.1997 / 19:10:48 / cg" ! ! !ProcessorScheduler class methodsFor:'primitive process primitives'! @@ -643,10 +643,10 @@ "/ when the last process at or above UserSchedulingPriority process died. "/ regular ST/X stays in above loop forever - 'Processor [info]: finish dispatch (no more processes)' infoPrintNL. + 'Processor [info]: finish dispatch (no more processes)' infoPrintCR. "Modified: 23.9.1996 / 14:19:56 / stefan" - "Modified: 10.1.1997 / 18:03:17 / cg" + "Modified: 10.1.1997 / 19:10:53 / cg" ! exitWhenNoMoreUserProcesses:aBoolean @@ -2330,6 +2330,6 @@ !ProcessorScheduler class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/ProcessorScheduler.st,v 1.106 1997-01-10 17:47:55 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/ProcessorScheduler.st,v 1.107 1997-01-10 18:17:32 cg Exp $' ! ! ProcessorScheduler initialize!