X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FRtsUtils.h;h=dd036a9e933be3cbae03c576ce95b20ba77c6846;hb=6a79e0681b336383d71a7b377ad244794dcb7c30;hp=94693f24eef9c2269871c2997c3cb40d48407d6c;hpb=7f309f1c021e7583f724cce599ce2dd3c439361b;p=ghc-hetmet.git diff --git a/ghc/rts/RtsUtils.h b/ghc/rts/RtsUtils.h index 94693f2..dd036a9 100644 --- a/ghc/rts/RtsUtils.h +++ b/ghc/rts/RtsUtils.h @@ -1,5 +1,5 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsUtils.h,v 1.3 1999/02/05 16:02:51 simonm Exp $ + * $Id: RtsUtils.h,v 1.21 2004/03/23 10:04:18 simonmar Exp $ * * (c) The GHC Team, 1998-1999 * @@ -7,27 +7,40 @@ * * ---------------------------------------------------------------------------*/ -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 *stgCallocBytes(int n, int m, char *msg) GNUC3_ATTRIBUTE(__malloc__); +extern void stgFree(void* p); + +extern void barf(char *s, ...) GNU_ATTRIBUTE(__noreturn__); extern void belch(char *s, ...); +extern void prog_belch(char *s, ...); extern void _stgAssert (char *filename, unsigned int linenum); -extern StgStablePtr errorHandler; -extern void raiseError( StgStablePtr handler ); - -extern void stackOverflow(nat stk_size); extern void heapOverflow(void); +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)); +char *time_str(void); +char *ullong_format_string(ullong, char *, rtsBool); -char * time_str(void); +#ifdef PAR +ullong msTime(void); +#endif -char *ullong_format_string(ullong, char *, rtsBool); +#ifdef DEBUG +extern void heapCheckFail( void ); +#endif + +extern void* __hscore_get_saved_termios(int fd); +extern void __hscore_set_saved_termios(int fd, void* ts); +#endif // RTSUTILS_H