X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FRtsUtils.h;h=96a5f0d82f9b11077f165db43fceee06891d20a3;hb=3eacdc7faf0d0e87a7201253f9f12c1fb4db7249;hp=428061a8f45ab186013507d80e4bbf8306cb8a08;hpb=5edbd17d0f915ff56666e92c008bb6e2a7311290;p=ghc-hetmet.git diff --git a/ghc/rts/RtsUtils.h b/ghc/rts/RtsUtils.h index 428061a..96a5f0d 100644 --- a/ghc/rts/RtsUtils.h +++ b/ghc/rts/RtsUtils.h @@ -1,34 +1,54 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsUtils.h,v 1.10 2000/05/18 11:32:21 panne Exp $ * - * (c) The GHC Team, 1998-1999 + * (c) The GHC Team, 1998-2005 * * 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* stgMallocBytesRWX(int len) + 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 belch(char *s, ...); -extern void prog_belch(char *s, ...); -extern void _stgAssert (char *filename, unsigned int linenum); +extern void *stgCallocBytes(int n, int m, char *msg) + GNUC3_ATTRIBUTE(__malloc__); + +extern void stgFree(void* p); + +/* ----------------------------------------------------------------------------- + * Misc other utilities + * -------------------------------------------------------------------------- */ extern void heapOverflow(void); -void resetNonBlockingFd(int fd); +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)); +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 */