X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FRtsUtils.h;h=97769b916b858bb568fa12e7b7369d8def251142;hb=ea22f57fe6b77cde3c3ec040f1246bf0e8ecef36;hp=8825460aa58b61fe4e0a16835c2f2f19250ac250;hpb=ab01dd3748fb245fe3feacafd87f91abd1822409;p=ghc-hetmet.git diff --git a/ghc/rts/RtsUtils.h b/ghc/rts/RtsUtils.h index 8825460..97769b9 100644 --- a/ghc/rts/RtsUtils.h +++ b/ghc/rts/RtsUtils.h @@ -1,21 +1,31 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsUtils.h,v 1.12 2001/10/31 10:30:29 simonmar Exp $ * - * (c) The GHC Team, 1998-1999 + * (c) The GHC Team, 1998-2004 * * General utility functions used in the RTS. * * ---------------------------------------------------------------------------*/ -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 *stgCallocBytes(int n, int m, char *msg); -extern void barf(char *s, ...) __attribute__((__noreturn__)) ; -extern void belch(char *s, ...); -extern void prog_belch(char *s, ...); +extern void *stgCallocBytes(int n, int m, char *msg) + GNUC3_ATTRIBUTE(__malloc__); + +extern void stgFree(void* p); + +/* ----------------------------------------------------------------------------- + * Misc other utilities + * -------------------------------------------------------------------------- */ extern void _stgAssert (char *filename, unsigned int linenum); @@ -26,12 +36,18 @@ 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)); +extern char *time_str(void); +extern char *ullong_format_string(ullong, char *, rtsBool); -char *time_str(void); -char *ullong_format_string(ullong, char *, rtsBool); +#ifdef PAR +extern ullong msTime(void); +#endif -ullong msTime(void); +#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