]> git.llucax.com Git - software/dgc/cdgc.git/blobdiff - rt/gc/cdgc/alloc.d
Move the modules to package rt.gc.cdgc
[software/dgc/cdgc.git] / rt / gc / cdgc / alloc.d
similarity index 98%
rename from gc/alloc.d
rename to rt/gc/cdgc/alloc.d
index eeebcf467769c8ac7b90eff0abfad5b734a47576..b709fda6ff63ea24d8108d5f21f2b06e89f53373 100644 (file)
@@ -24,7 +24,7 @@
  * Authors:   Walter Bright, David Friedman, Sean Kelly
  */
 
-module gc.alloc;
+module rt.gc.cdgc.alloc;
 
 
 // C OS-specific API
@@ -134,7 +134,7 @@ else static if (is(typeof(malloc)))
     //       to PAGESIZE alignment, there will be space for a void* at the end
     //       after PAGESIZE bytes used by the GC.
 
-    import gcx; // for PAGESIZE
+    import rt.gc.cdgc.gc: PAGESIZE;
 
     const size_t PAGE_MASK = PAGESIZE - 1;