]> git.llucax.com Git - software/dgc/cdgc.git/commitdiff
Declare public allocation API
authorLeandro Lucarella <llucax@gmail.com>
Sun, 17 Jan 2010 00:01:04 +0000 (21:01 -0300)
committerLeandro Lucarella <llucax@gmail.com>
Sun, 17 Jan 2010 00:55:26 +0000 (21:55 -0300)
Declare the public API and move comments to the declaration, to avoid
duplication and let ddoc document the functions for all versions.

gc/alloc.d

index f7970da269ccc28dcc1585789d9663af7a08d2ad..e55c03cf05980eaba385c89a0d0365769e3d18a8 100644 (file)
@@ -26,7 +26,9 @@
 
 module gc.alloc;
 
+
 // C OS-specific API
+
 private extern (C) {
     version (Win32) {
         alias void* POINTER;
@@ -79,23 +81,50 @@ private extern (C) {
     }
 }
 
-static if (is(typeof(VirtualAlloc)))
+
+// Public interface
+
+version (D_Ddoc)
 {
     /**
      * Map memory.
      */
+    void* os_mem_map(size_t nbytes);
+
+    /**
+     * Commit memory.
+     * Returns:
+     *      true  success
+     *      false failure
+     */
+    int os_mem_commit(void* base, size_t offset, size_t nbytes);
+
+    /**
+     * Decommit memory.
+     * Returns:
+     *      true  success
+     *      false failure
+     */
+    int os_mem_decommit(void* base, size_t offset, size_t nbytes);
+
+    /**
+     * Unmap memory allocated with os_mem_map().
+     * Memory must have already been decommitted.
+     * Returns:
+     *      true  success
+     *      false failure
+     */
+    int os_mem_unmap(void* base, size_t nbytes);
+}
+// Implementations
+else static if (is(typeof(VirtualAlloc)))
+{
     void *os_mem_map(size_t nbytes)
     {
         return VirtualAlloc(null, nbytes, MEM_RESERVE, PAGE_READWRITE);
     }
 
 
-    /**
-     * Commit memory.
-     * Returns:
-     *      0       success
-     *      !=0     failure
-     */
     int os_mem_commit(void *base, size_t offset, size_t nbytes)
     {   void *p;
 
@@ -104,25 +133,12 @@ static if (is(typeof(VirtualAlloc)))
     }
 
 
-    /**
-     * Decommit memory.
-     * Returns:
-     *      0       success
-     *      !=0     failure
-     */
     int os_mem_decommit(void *base, size_t offset, size_t nbytes)
     {
     return cast(int)(VirtualFree(base + offset, nbytes, MEM_DECOMMIT) == 0);
     }
 
 
-    /**
-     * Unmap memory allocated with os_mem_map().
-     * Memory must have already been decommitted.
-     * Returns:
-     *      0       success
-     *      !=0     failure
-     */
     int os_mem_unmap(void *base, size_t nbytes)
     {
         return cast(int)(VirtualFree(base, 0, MEM_RELEASE) == 0);