[project @ 1999-01-18 10:54:15 by simonm]
authorsimonm <unknown>
Mon, 18 Jan 1999 10:54:15 +0000 (10:54 +0000)
committersimonm <unknown>
Mon, 18 Jan 1999 10:54:15 +0000 (10:54 +0000)
Don't bomb out with "Dont know where to get memory from on this
architecture" on Win32.

ghc/rts/MBlock.c

index 249493a..ddf8fd1 100644 (file)
@@ -1,5 +1,5 @@
 /* -----------------------------------------------------------------------------
- * $Id: MBlock.c,v 1.5 1999/01/18 09:20:08 sof Exp $
+ * $Id: MBlock.c,v 1.6 1999/01/18 10:54:15 simonm Exp $
  *
  * MegaBlock Allocator Interface.  This file contains all the dirty
  * architecture-dependent hackery required to get a chunk of aligned
@@ -52,6 +52,9 @@
 /* guess */
 #define ASK_FOR_MEM_AT 0x50000000
 
+#elif _WIN32
+/* doesn't matter, we use a reserve/commit algorithm */
+
 #else
 #error Dont know where to get memory from on this architecture
 /* ToDo: memory locations on other architectures */