Changeset 2464
- Timestamp:
- 07/20/07 04:03:03 (1 year ago)
- Files:
-
- trunk/lib/gc/basic/gc.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/gc/basic/gc.d
r2292 r2464 61 61 extern (C) void gc_term() 62 62 { 63 //_gc.fullCollectNoStack(); 64 _gc.Dtor(); 63 // NOTE: There may be daemons threads still running when this routine is 64 // called. If so, cleaning memory out from under then is a good 65 // way to make them crash horribly. This probably doesn't matter 66 // much since the app is supposed to be shutting down anyway, but 67 // I'm disabling cleanup for now until I can think about it some 68 // more. 69 //_gc.fullCollectNoStack(); // not really a 'collect all' -- still scans 70 // static data area, roots, and ranges. 71 //_gc.Dtor(); 65 72 } 66 73












