[project @ 2000-01-12 15:15:17 by simonmar]
[ghc-hetmet.git] / ghc / rts / RtsUtils.h
1 /* -----------------------------------------------------------------------------
2  * $Id: RtsUtils.h,v 1.6 2000/01/12 15:15:17 simonmar 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 extern void prog_belch(char *s, ...);
17
18 extern void _stgAssert (char *filename, unsigned int linenum);
19
20 extern StgStablePtr errorHandler;
21 extern void raiseError( StgStablePtr handler );
22
23 extern void stackOverflow(void);
24 extern void heapOverflow(void);
25
26 void resetNonBlockingFd(int fd);
27
28 extern nat stg_strlen(char *str);
29
30 /*Defined in Main.c, but made visible here*/
31 extern void stg_exit(I_ n) __attribute__((noreturn));
32
33 char * time_str(void);
34
35 char *ullong_format_string(ullong, char *, rtsBool);
36