[project @ 2000-03-16 17:23:35 by simonmar]
[ghc-hetmet.git] / ghc / rts / RtsUtils.h
1 /* -----------------------------------------------------------------------------
2  * $Id: RtsUtils.h,v 1.8 2000/03/16 17:23:35 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 void stackOverflow(void);
21 extern void heapOverflow(void);
22
23 void resetNonBlockingFd(int fd);
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 char *ullong_format_string(ullong, char *, rtsBool);
32 //ullong   msTime(void);
33
34