On Windows, when returning memory to the OS, we try to release it
[ghc-hetmet.git] / rts / posix / OSMem.c
index 9993da3..bfe1296 100644 (file)
@@ -211,6 +211,10 @@ void osFreeMBlocks(char *addr, nat n)
     munmap(addr, n * MBLOCK_SIZE);
 }
 
+void osReleaseFreeMemory(void) {
+    /* Nothing to do on POSIX */
+}
+
 void osFreeAllMBlocks(void)
 {
     void *mblock;