Allow "INLINEABLE" as a synonym
[ghc-hetmet.git] / rts / sm / OSMem.h
index d5b09a1..d92b170 100644 (file)
@@ -1,13 +1,23 @@
 /* -----------------------------------------------------------------------------
  *
- * (c) The University of Glasgow 2006-2007
+ * (c) The University of Glasgow 2006-2008
  *
  * OS-specific memory management
  *
  * ---------------------------------------------------------------------------*/
 
+#ifndef SM_OSMEM_H
+#define SM_OSMEM_H
+
+#include "BeginPrivate.h"
+
 void osMemInit(void);
 void *osGetMBlocks(nat n);
+void osFreeMBlocks(char *addr, nat n);
 void osFreeAllMBlocks(void);
 lnat getPageSize (void);
 void setExecutable (void *p, lnat len, rtsBool exec);
+
+#include "EndPrivate.h"
+
+#endif /* SM_OSMEM_H */