MemoryMonitor.st
changeset 994 1734123c7520
parent 989 0f047353b974
child 1012 e3793f355ffc
equal deleted inserted replaced
993:db983895f7c3 994:1734123c7520
   518 !MemoryMonitor methodsFor:'initialization'!
   518 !MemoryMonitor methodsFor:'initialization'!
   519 
   519 
   520 initialize
   520 initialize
   521     super initialize.
   521     super initialize.
   522 
   522 
   523     drawLock := Semaphore forMutualExclusion.
   523     drawLock := Semaphore forMutualExclusion name:'drawLock'.
   524 
   524 
   525     updateInterval := 0.5.
   525     updateInterval := 0.5.
   526     ProcessorScheduler isPureEventDriven ifTrue:[
   526     ProcessorScheduler isPureEventDriven ifTrue:[
   527         updateBlock := [self updateDisplay].
   527         updateBlock := [self updateDisplay].
   528     ].
   528     ].
   855 ! !
   855 ! !
   856 
   856 
   857 !MemoryMonitor class methodsFor:'documentation'!
   857 !MemoryMonitor class methodsFor:'documentation'!
   858 
   858 
   859 version
   859 version
   860     ^ '$Header: /cvs/stx/stx/libtool/MemoryMonitor.st,v 1.41 1997-01-23 21:39:55 cg Exp $'
   860     ^ '$Header: /cvs/stx/stx/libtool/MemoryMonitor.st,v 1.42 1997-01-24 22:23:40 cg Exp $'
   861 ! !
   861 ! !