diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 58cf9698d0..e66691409a 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,14 @@ 2002-12-01 23:12 UTC+0100 Foo Bar */ +2001-12-18 19:00 UTC+0700 Andi Jahja + Revision by Ron Pinkas + * source/vm/hvm.c + Replaced the call to hb_gcCollectAll() in hvm.c line 389 with new + hb_gcReleaseAll() will increase cleanup speed (on app termination), + and will result in a more complete cleanup in certain situations. + + 2001-12-18 10:03 UTC+0100 Viktor Szakats * source/common/hbffind.c diff --git a/harbour/source/vm/hvm.c b/harbour/source/vm/hvm.c index 2be17c443e..22d0338114 100644 --- a/harbour/source/vm/hvm.c +++ b/harbour/source/vm/hvm.c @@ -386,7 +386,8 @@ void hb_vmQuit( void ) hb_memvarsRelease(); /* clear all PUBLIC variables */ /* release all known garbage */ - hb_gcCollectAll(); + hb_gcReleaseAll(); + /* hb_gcCollectAll(); */ hb_memvarsFree(); /* free memory allocated for memvars table */ hb_stackFree();