MemoryMonitor.st
changeset 79 d78f92a07d5d
parent 75 f6310cbc93b6
child 85 d9713a3ca092
--- a/MemoryMonitor.st	Mon Mar 06 23:07:15 1995 +0100
+++ b/MemoryMonitor.st	Thu Mar 09 04:31:23 1995 +0100
@@ -24,7 +24,7 @@
  COPYRIGHT (c) 1991 by Claus Gittinger
 	      All Rights Reserved
 
-$Header: /cvs/stx/stx/libtool/MemoryMonitor.st,v 1.10 1995-03-06 19:31:50 claus Exp $
+$Header: /cvs/stx/stx/libtool/MemoryMonitor.st,v 1.11 1995-03-09 03:31:23 claus Exp $
 '!
 
 !MemoryMonitor class methodsFor:'documentation'!
@@ -45,7 +45,7 @@
 
 version
 "
-$Header: /cvs/stx/stx/libtool/MemoryMonitor.st,v 1.10 1995-03-06 19:31:50 claus Exp $
+$Header: /cvs/stx/stx/libtool/MemoryMonitor.st,v 1.11 1995-03-09 03:31:23 claus Exp $
 "
 !
 
@@ -462,7 +462,7 @@
 		(Delay forSeconds:updateInterval) wait.
 		self updateDisplay
 	    ]
-	] forkAt:5.
+	] forkAt:6.
 	myProcess name:'Memory Monitor [' , 
 			Processor activeProcess id printString , '] update'
     ].
@@ -552,11 +552,10 @@
 !
 
 backgroundCollect
-    [ObjectMemory incrementalGC] forkAt:4
+    [ObjectMemory incrementalGC] forkAt:5 
 !
 
 compressSources
     Smalltalk compressSources.
     ObjectMemory markAndSweep
 ! !
-