ProcessorScheduler.st
changeset 337 7c6b8d4e6a5b
parent 335 1f1cc22f2aa5
child 339 e8658d38abfb
equal deleted inserted replaced
336:3fa9e73a5c0f 337:7c6b8d4e6a5b
    32 
    32 
    33 ProcessorScheduler comment:'
    33 ProcessorScheduler comment:'
    34 COPYRIGHT (c) 1993 by Claus Gittinger
    34 COPYRIGHT (c) 1993 by Claus Gittinger
    35 	     All Rights Reserved
    35 	     All Rights Reserved
    36 
    36 
    37 $Header: /cvs/stx/stx/libbasic/ProcessorScheduler.st,v 1.36 1995-05-03 15:30:25 claus Exp $
    37 $Header: /cvs/stx/stx/libbasic/ProcessorScheduler.st,v 1.37 1995-05-04 12:48:05 claus Exp $
    38 '!
    38 '!
    39 
    39 
    40 Smalltalk at:#Processor put:nil!
    40 Smalltalk at:#Processor put:nil!
    41 
    41 
    42 !ProcessorScheduler class methodsFor:'documentation'!
    42 !ProcessorScheduler class methodsFor:'documentation'!
    55 "
    55 "
    56 !
    56 !
    57 
    57 
    58 version
    58 version
    59 "
    59 "
    60 $Header: /cvs/stx/stx/libbasic/ProcessorScheduler.st,v 1.36 1995-05-03 15:30:25 claus Exp $
    60 $Header: /cvs/stx/stx/libbasic/ProcessorScheduler.st,v 1.37 1995-05-04 12:48:05 claus Exp $
    61 "
    61 "
    62 !
    62 !
    63 
    63 
    64 documentation
    64 documentation
    65 "
    65 "
   542 
   542 
   543     "
   543     "
   544      ... and restart those that can be.
   544      ... and restart those that can be.
   545     "
   545     "
   546     processesToRestart do:[:p |
   546     processesToRestart do:[:p |
   547 	'process restart not implemented' errorPrintNL.
   547 "/        'process restart not implemented' errorPrintNL.
   548 "/        p restart
   548 	p restart
   549     ]
   549     ]
   550 ! !
   550 ! !
   551 
   551 
   552 !ProcessorScheduler methodsFor:'private'!
   552 !ProcessorScheduler methodsFor:'private'!
   553 
   553