don't make -ddump-if-trace imply -no-recomp
[ghc-hetmet.git] / rts / RtsUtils.h
index 96a5f0d..c29c959 100644 (file)
  * (Checked) dynamic allocation
  * -------------------------------------------------------------------------- */
 
-extern void *stgMallocBytes(int n, char *msg)
-    GNUC3_ATTRIBUTE(__malloc__);
+extern void initAllocator(void);
+extern void shutdownAllocator(void);
 
-extern void* stgMallocBytesRWX(int len)
+extern void *stgMallocBytes(int n, char *msg)
     GNUC3_ATTRIBUTE(__malloc__);
 
 extern void *stgReallocBytes(void *p, int n, char *msg);
@@ -51,4 +51,6 @@ extern void heapCheckFail( void );
 extern void* __hscore_get_saved_termios(int fd);
 extern void __hscore_set_saved_termios(int fd, void* ts);
 
+void printRtsInfo(void);
+
 #endif /* RTSUTILS_H */