[project @ 2004-04-27 12:47:13 by simonpj]
[ghc-hetmet.git] / ghc / rts / RtsUtils.h
index 2adcf35..dd036a9 100644 (file)
@@ -1,5 +1,5 @@
 /* -----------------------------------------------------------------------------
- * $Id: RtsUtils.h,v 1.18 2003/09/26 12:11:18 panne Exp $
+ * $Id: RtsUtils.h,v 1.21 2004/03/23 10:04:18 simonmar Exp $
  *
  * (c) The GHC Team, 1998-1999
  *
@@ -7,13 +7,16 @@
  *
  * ---------------------------------------------------------------------------*/
 
+#ifndef RTSUTILS_H
+#define RTSUTILS_H
+
 /* (Checked) dynamic allocation: */
-extern void *stgMallocBytes(int n, char *msg);
+extern void *stgMallocBytes(int n, char *msg) GNUC3_ATTRIBUTE(__malloc__);
 extern void *stgReallocBytes(void *p, int n, char *msg);
-extern void *stgCallocBytes(int n, int m, char *msg);
+extern void *stgCallocBytes(int n, int m, char *msg) GNUC3_ATTRIBUTE(__malloc__);
 extern void stgFree(void* p);
 
-extern void barf(char *s, ...) __attribute__((__noreturn__)) ;
+extern void barf(char *s, ...) GNU_ATTRIBUTE(__noreturn__);
 extern void belch(char *s, ...);
 extern void prog_belch(char *s, ...);
 
@@ -26,9 +29,6 @@ extern void resetNonBlockingFd(int fd);
 
 extern nat stg_strlen(char *str);
 
-/*Defined in Main.c, but made visible here*/
-extern void stg_exit(int n) __attribute__((noreturn));
-
 char *time_str(void);
 char *ullong_format_string(ullong, char *, rtsBool);
 
@@ -42,3 +42,5 @@ extern void heapCheckFail( void );
 
 extern void* __hscore_get_saved_termios(int fd);
 extern void __hscore_set_saved_termios(int fd, void* ts);
+
+#endif // RTSUTILS_H