Process.st
changeset 2130 b9e7e1cf98bd
parent 1980 173122fed8e2
child 2158 aab75d6439d0
equal deleted inserted replaced
2129:e03cd7bc3475 2130:b9e7e1cf98bd
   987 
   987 
   988     (Processor newProcessFor:self withId:id) ifFalse:[ 
   988     (Processor newProcessFor:self withId:id) ifFalse:[ 
   989         "for some reason, the Processor was unable to create
   989         "for some reason, the Processor was unable to create
   990          a VM process for me ...."
   990          a VM process for me ...."
   991 
   991 
   992         ('PROCESS: process ' , id printString , ' failed to restart.') errorPrintNL.
   992         ('Process [warning]: process ' , id printString , ' failed to restart.') errorPrintCR.
   993         ^ nil
   993         ^ nil
   994     ].
   994     ].
   995     processGroupId := savedGroupId.
   995     processGroupId := savedGroupId.
   996     self resume
   996     self resume
   997 
   997 
   998     "Created: 28.10.1996 / 20:32:34 / cg"
   998     "Created: 28.10.1996 / 20:32:34 / cg"
   999     "Modified: 28.10.1996 / 20:45:08 / cg"
   999     "Modified: 10.1.1997 / 18:01:13 / cg"
  1000 !
  1000 !
  1001 
  1001 
  1002 restart
  1002 restart
  1003     "restart the process from the beginning.
  1003     "restart the process from the beginning.
  1004      This is only possible, if its restartable."
  1004      This is only possible, if its restartable."
  1221 ! !
  1221 ! !
  1222 
  1222 
  1223 !Process class methodsFor:'documentation'!
  1223 !Process class methodsFor:'documentation'!
  1224 
  1224 
  1225 version
  1225 version
  1226     ^ '$Header: /cvs/stx/stx/libbasic/Process.st,v 1.68 1996-11-15 10:46:45 cg Exp $'
  1226     ^ '$Header: /cvs/stx/stx/libbasic/Process.st,v 1.69 1997-01-10 17:50:33 cg Exp $'
  1227 ! !
  1227 ! !
  1228 Process initialize!
  1228 Process initialize!