Process.st
changeset 1086 7b0641a2e1ef
parent 1033 244530001e84
child 1092 2a8acc60f5b5
equal deleted inserted replaced
1085:3f5ae1995e83 1086:7b0641a2e1ef
   769      This is sent by the ProcessorScheduler to all restartable processes."
   769      This is sent by the ProcessorScheduler to all restartable processes."
   770 
   770 
   771 "/  ('restart process ' , id printString) errorPrintNL.
   771 "/  ('restart process ' , id printString) errorPrintNL.
   772 
   772 
   773     (Processor newProcessFor:self withId:id) ifFalse:[ 
   773     (Processor newProcessFor:self withId:id) ifFalse:[ 
   774 	"for some reason, the Processor was unable to create
   774         "for some reason, the Processor was unable to create
   775 	 a VM process for me ...."
   775          a VM process for me ...."
   776 
   776 
   777 	('process ' , id printString , ' failed to restart.') errorPrintNL.
   777         ('PROCESS: process ' , id printString , ' failed to restart.') errorPrintNL.
   778 	^ nil
   778         ^ nil
   779     ].
   779     ].
   780     self resume
   780     self resume
       
   781 
       
   782     "Modified: 7.3.1996 / 19:21:50 / cg"
   781 !
   783 !
   782 
   784 
   783 start
   785 start
   784     "start the process - this is sent by the VM to the process to get
   786     "start the process - this is sent by the VM to the process to get
   785      the process up and running.
   787      the process up and running.
   930 ! !
   932 ! !
   931 
   933 
   932 !Process class methodsFor:'documentation'!
   934 !Process class methodsFor:'documentation'!
   933 
   935 
   934 version
   936 version
   935     ^ '$Header: /cvs/stx/stx/libbasic/Process.st,v 1.44 1996-02-28 20:38:42 cg Exp $'
   937     ^ '$Header: /cvs/stx/stx/libbasic/Process.st,v 1.45 1996-03-07 18:32:16 cg Exp $'
   936 ! !
   938 ! !
   937 Process initialize!
   939 Process initialize!