[project @ 1999-03-17 13:19:19 by simonm]
[ghc-hetmet.git] / ghc / rts / RtsUtils.h
1 /* -----------------------------------------------------------------------------
2  * $Id: RtsUtils.h,v 1.4 1999/03/17 13:19:23 simonm Exp $
3  *
4  * (c) The GHC Team, 1998-1999
5  *
6  * General utility functions used in the RTS.
7  *
8  * ---------------------------------------------------------------------------*/
9
10 extern void *stgMallocBytes(int n, char *msg);
11 extern void *stgMallocWords(int n, char *msg);
12 extern void *stgReallocBytes(void *p, int n, char *msg);
13 extern void *stgReallocWords(void *p, int n, char *msg);
14 extern void barf(char *s, ...) __attribute__((__noreturn__)) ;
15 extern void belch(char *s, ...);
16
17 extern void _stgAssert (char *filename, unsigned int linenum);
18
19 extern StgStablePtr errorHandler;
20 extern void raiseError( StgStablePtr handler );
21
22 extern void stackOverflow(void);
23 extern void heapOverflow(void);
24
25 extern nat stg_strlen(char *str);
26
27 /*Defined in Main.c, but made visible here*/
28 extern void stg_exit(I_ n) __attribute__((noreturn));
29
30 char * time_str(void);
31
32 char *ullong_format_string(ullong, char *, rtsBool);
33