X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FRtsUtils.h;h=3e8ac5dc26dc0537a5918d64a8c7d2c1aae481a5;hb=5feee2442591409f5413cd4a2e4074d434657e85;hp=5a7da5a6225faf3c8287338cc277e328d45ada12;hpb=016cf2ca08327cb3fbf1400634d31a0e7548d24d;p=ghc-hetmet.git diff --git a/ghc/rts/RtsUtils.h b/ghc/rts/RtsUtils.h index 5a7da5a..3e8ac5d 100644 --- a/ghc/rts/RtsUtils.h +++ b/ghc/rts/RtsUtils.h @@ -1,23 +1,31 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsUtils.h,v 1.13 2003/03/19 18:56:14 sof 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); -extern void _stgAssert (char *filename, unsigned int linenum); +/* ----------------------------------------------------------------------------- + * Misc other utilities + * -------------------------------------------------------------------------- */ extern void heapOverflow(void); @@ -26,14 +34,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)); - -char *time_str(void); -char *ullong_format_string(ullong, char *, rtsBool); +extern char *time_str(void); +extern char *ullong_format_string(ullong, char *, rtsBool); -ullong msTime(void); +#ifdef PAR +extern ullong msTime(void); +#endif #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 */