script2.stx
author convert-repo
Wed, 24 Aug 2016 04:05:36 +0000
changeset 1452 571994fe6d3d
parent 1393 4d8585c39345
child 1474 5da7d89d0cae
permissions -rwxr-xr-x
update tags

#!stx --script
"/
"/ notice that you can open more tools from the workspace
"/ (i.e. eval: NewLauncher open)
"/
Workspace open.
'done' printCR.

"
[
  Delay waitForSeconds:10.
  Process allInstances do:[:p |
    p isDead ifFalse:[
      p name print. ' ' print. p isSystemProcess printCR.
p suspendedContext notNil ifTrue:[
  p suspendedContext fullPrintAll.
  '' printCR.
].
    ].
  ].
  Processor anyUserProcessAtAll printCR.
  Smalltalk exit
] fork.
"