]> git.llucax.com Git - software/dgc/cdgc.git/commitdiff
Remove commented out code
authorLeandro Lucarella <llucax@gmail.com>
Sat, 16 Jan 2010 23:40:15 +0000 (20:40 -0300)
committerLeandro Lucarella <llucax@gmail.com>
Sat, 16 Jan 2010 23:43:27 +0000 (20:43 -0300)
gc/alloc.d

index 55d0497a7296e541008e7c09bd0ca97f5733f7b9..6fd156e2cfe7dfa0e64588ad1094dfcf01637f50 100644 (file)
@@ -79,19 +79,7 @@ private extern (C) {
     }
 }
 
-/+
-static if(is(typeof(VirtualAlloc)))
-    version = GC_Use_Alloc_Win32;
-else static if (is(typeof(mmap)))
-    version = GC_Use_Alloc_MMap;
-else static if (is(typeof(valloc)))
-    version = GC_Use_Alloc_Valloc;
-else static if (is(typeof(malloc)))
-    version = GC_Use_Alloc_Malloc;
-else static assert(false, "No supported allocation methods available.");
-+/
-
-static if (is(typeof(VirtualAlloc))) // version (GC_Use_Alloc_Win32)
+static if (is(typeof(VirtualAlloc)))
 {
     /**
      * Map memory.
@@ -140,7 +128,7 @@ static if (is(typeof(VirtualAlloc))) // version (GC_Use_Alloc_Win32)
         return cast(int)(VirtualFree(base, 0, MEM_RELEASE) == 0);
     }
 }
-else static if (is(typeof(mmap)))  // else version (GC_Use_Alloc_MMap)
+else static if (is(typeof(mmap)))
 {
     void *os_mem_map(size_t nbytes)
     {   void *p;
@@ -167,7 +155,7 @@ else static if (is(typeof(mmap)))  // else version (GC_Use_Alloc_MMap)
         return munmap(base, nbytes);
     }
 }
-else static if (is(typeof(valloc))) // else version (GC_Use_Alloc_Valloc)
+else static if (is(typeof(valloc)))
 {
     void *os_mem_map(size_t nbytes)
     {
@@ -193,7 +181,7 @@ else static if (is(typeof(valloc))) // else version (GC_Use_Alloc_Valloc)
         return 0;
     }
 }
-else static if (is(typeof(malloc))) // else version (GC_Use_Alloc_Malloc)
+else static if (is(typeof(malloc)))
 {
     // NOTE: This assumes malloc granularity is at least (void*).sizeof.  If
     //       (req_size + PAGESIZE) is allocated, and the pointer is rounded up