import rt.gc.cdgc.gc: GC, BlkInfo;
import rt.gc.cdgc.stats: GCStats;
-import libc = rt.gc.cdgc.libc;
+
+import cstdlib = tango.stdc.stdlib;
version=GCCLASS;
extern (C) void gc_init()
{
version (GCCLASS)
- { void* p;
+ {
ClassInfo ci = GC.classinfo;
-
- p = libc.malloc(ci.init.length);
+ void* p = cstdlib.malloc(ci.init.length);
(cast(byte*)p)[0 .. ci.init.length] = ci.init[];
_gc = cast(GC)p;
}
else
{
- _gc = cast(GC*) libc.calloc(1, GC.sizeof);
+ _gc = cast(GC*) cstdlib.calloc(1, GC.sizeof);
}
_gc.initialize();
version (DigitalMars) version(OSX) {
//
_gc.fullCollectNoStack(); // not really a 'collect all' -- still scans
// static data area, roots, and ranges.
- _gc.Dtor();
} else {
// default (safe) clenup
_gc.fullCollect();
{
return _gc.weakpointerGet(wp);
}
+
+
+// vim: set et sw=4 sts=4 :