MemoryMonitor.st
changeset 2117 dd96b2478eeb
parent 1992 89bde57ef1c8
child 2362 d1314d621204
--- a/MemoryMonitor.st	Fri Apr 23 14:43:17 1999 +0200
+++ b/MemoryMonitor.st	Fri Apr 23 14:45:55 1999 +0200
@@ -127,19 +127,6 @@
     "Created: / 15.7.1998 / 12:59:58 / cg"
 ! !
 
-!MemoryMonitor methodsFor:'destroying'!
-
-destroy
-    updateBlock notNil ifTrue:[
-	Processor removeTimedBlock:updateBlock.
-    ] ifFalse:[
-	myProcess terminate.
-	myProcess := nil
-    ].
-    oldData := newData := freeData := nil.
-    super destroy
-! !
-
 !MemoryMonitor methodsFor:'drawing'!
 
 displayKilo:aNumber name:nm y:y
@@ -592,7 +579,18 @@
     "Modified: / 7.9.1998 / 21:41:13 / cg"
 ! !
 
-!MemoryMonitor methodsFor:'initialization'!
+!MemoryMonitor methodsFor:'initialize / release'!
+
+destroy
+    updateBlock notNil ifTrue:[
+	Processor removeTimedBlock:updateBlock.
+    ] ifFalse:[
+	myProcess terminate.
+	myProcess := nil
+    ].
+    oldData := newData := freeData := nil.
+    super destroy
+!
 
 initialize
     super initialize.
@@ -978,5 +976,5 @@
 !MemoryMonitor class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/MemoryMonitor.st,v 1.60 1999-02-03 16:04:56 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/MemoryMonitor.st,v 1.61 1999-04-23 12:45:55 cg Exp $'
 ! !