Skip to content
Snippets Groups Projects
Commit 905001b5 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1999-01-18 10:54:15 by simonm]

Don't bomb out with "Dont know where to get memory from on this
architecture" on Win32.
parent 55d615e0
No related merge requests found
/* -----------------------------------------------------------------------------
* $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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment