ProcMonitor.st
changeset 1505 417ccb5b70b7
parent 1504 ca559ae2710a
child 1620 51341ec8360b
equal deleted inserted replaced
1504:ca559ae2710a 1505:417ccb5b70b7
   201 
   201 
   202                         id printOn:line paddedTo:6.
   202                         id printOn:line paddedTo:6.
   203                         gId := aProcess processGroupId.
   203                         gId := aProcess processGroupId.
   204                         gId == id ifTrue:[
   204                         gId == id ifTrue:[
   205                             "/ a group leader
   205                             "/ a group leader
   206                             '-    ' printOn:line.
   206                             '-     ' printOn:line.
   207                         ] ifFalse:[
   207                         ] ifFalse:[
   208                             gId printOn:line paddedTo:6.
   208                             gId printOn:line paddedTo:6.
   209                         ].
   209                         ].
   210 
   210 
   211                         (nm := aProcess name) isNil ifFalse:[
   211                         (nm := aProcess name) isNil ifFalse:[
   360         Processor removeTimedBlock:updateBlock.
   360         Processor removeTimedBlock:updateBlock.
   361         Processor addTimedBlock:updateBlock afterSeconds:updateDelay
   361         Processor addTimedBlock:updateBlock afterSeconds:updateDelay
   362     ]
   362     ]
   363 
   363 
   364     "Modified: / 3.7.1996 / 13:56:01 / stefan"
   364     "Modified: / 3.7.1996 / 13:56:01 / stefan"
   365     "Modified: / 4.3.1998 / 17:14:28 / cg"
   365     "Modified: / 4.3.1998 / 18:15:38 / cg"
   366 ! !
   366 ! !
   367 
   367 
   368 !ProcessMonitor methodsFor:'initialization'!
   368 !ProcessMonitor methodsFor:'initialization'!
   369 
   369 
   370 initialize
   370 initialize
   652 ! !
   652 ! !
   653 
   653 
   654 !ProcessMonitor class methodsFor:'documentation'!
   654 !ProcessMonitor class methodsFor:'documentation'!
   655 
   655 
   656 version
   656 version
   657     ^ '$Header: /cvs/stx/stx/libtool/Attic/ProcMonitor.st,v 1.58 1998-03-04 18:13:27 cg Exp $'
   657     ^ '$Header: /cvs/stx/stx/libtool/Attic/ProcMonitor.st,v 1.59 1998-03-04 18:16:15 cg Exp $'
   658 ! !
   658 ! !