X-Git-Url: https://git.llucax.com/software/dgc/cdgc.git/blobdiff_plain/624a6db4949f3e3a7ebba7506166e0f9d4be3e5e..dd0f3b1617e380408f300f48c455e2905b859067:/rt/gc/cdgc/iface.d?ds=sidebyside diff --git a/rt/gc/cdgc/iface.d b/rt/gc/cdgc/iface.d index 703bbef..fec035a 100644 --- a/rt/gc/cdgc/iface.d +++ b/rt/gc/cdgc/iface.d @@ -28,7 +28,8 @@ module rt.gc.cdgc.iface; 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; @@ -66,13 +67,13 @@ extern (C) void gc_init() version (GCCLASS) { ClassInfo ci = GC.classinfo; - void* 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) { @@ -101,7 +102,6 @@ extern (C) void gc_term() // _gc.fullCollectNoStack(); // not really a 'collect all' -- still scans // static data area, roots, and ranges. - _gc.Dtor(); } else { // default (safe) clenup _gc.fullCollect(); @@ -232,3 +232,6 @@ extern (C) Object gc_weakpointerGet( void* wp ) { return _gc.weakpointerGet(wp); } + + +// vim: set et sw=4 sts=4 :