[project @ 2004-09-06 11:10:32 by simonmar]
[ghc-hetmet.git] / ghc / rts / RtsUtils.h
index 8f871b0..97769b9 100644 (file)
@@ -1,35 +1,53 @@
 /* -----------------------------------------------------------------------------
- * $Id: RtsUtils.h,v 1.5 1999/11/09 10:46:25 simonmar Exp $
  *
- * (c) The GHC Team, 1998-1999
+ * (c) The GHC Team, 1998-2004
  *
  * General utility functions used in the RTS.
  *
  * ---------------------------------------------------------------------------*/
 
-extern void *stgMallocBytes(int n, char *msg);
-extern void *stgMallocWords(int n, char *msg);
+#ifndef RTSUTILS_H
+#define RTSUTILS_H
+
+/* -----------------------------------------------------------------------------
+ * (Checked) dynamic allocation
+ * -------------------------------------------------------------------------- */
+
+extern void *stgMallocBytes(int n, char *msg)
+    GNUC3_ATTRIBUTE(__malloc__);
+
 extern void *stgReallocBytes(void *p, int n, char *msg);
-extern void *stgReallocWords(void *p, int n, char *msg);
-extern void barf(char *s, ...) __attribute__((__noreturn__)) ;
-extern void belch(char *s, ...);
 
-extern void _stgAssert (char *filename, unsigned int linenum);
+extern void *stgCallocBytes(int n, int m, char *msg)
+     GNUC3_ATTRIBUTE(__malloc__);
 
-extern StgStablePtr errorHandler;
-extern void raiseError( StgStablePtr handler );
+extern void stgFree(void* p);
+
+/* -----------------------------------------------------------------------------
+ * Misc other utilities
+ * -------------------------------------------------------------------------- */
+
+extern void _stgAssert (char *filename, unsigned int linenum);
 
-extern void stackOverflow(void);
 extern void heapOverflow(void);
 
-void resetNonBlockingFd(int fd);
+extern void setNonBlockingFd(int fd);
+extern void resetNonBlockingFd(int fd);
 
 extern nat stg_strlen(char *str);
 
-/*Defined in Main.c, but made visible here*/
-extern void stg_exit(I_ n) __attribute__((noreturn));
+extern char *time_str(void);
+extern char *ullong_format_string(ullong, char *, rtsBool);
+
+#ifdef PAR
+extern ullong msTime(void);
+#endif
 
-char * time_str(void);
+#ifdef DEBUG
+extern void heapCheckFail( void );
+#endif
 
-char *ullong_format_string(ullong, char *, rtsBool);
+extern void* __hscore_get_saved_termios(int fd);
+extern void __hscore_set_saved_termios(int fd, void* ts);
 
+#endif // RTSUTILS_H