X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FRtsUtils.h;h=97769b916b858bb568fa12e7b7369d8def251142;hb=1d10874717ff05d2babc9cbf079d5895fcc0a922;hp=dd036a9e933be3cbae03c576ce95b20ba77c6846;hpb=6a79e0681b336383d71a7b377ad244794dcb7c30;p=ghc-hetmet.git diff --git a/ghc/rts/RtsUtils.h b/ghc/rts/RtsUtils.h index dd036a9..97769b9 100644 --- a/ghc/rts/RtsUtils.h +++ b/ghc/rts/RtsUtils.h @@ -1,7 +1,6 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsUtils.h,v 1.21 2004/03/23 10:04:18 simonmar Exp $ * - * (c) The GHC Team, 1998-1999 + * (c) The GHC Team, 1998-2004 * * General utility functions used in the RTS. * @@ -10,15 +9,23 @@ #ifndef RTSUTILS_H #define RTSUTILS_H -/* (Checked) dynamic allocation: */ -extern void *stgMallocBytes(int n, char *msg) GNUC3_ATTRIBUTE(__malloc__); +/* ----------------------------------------------------------------------------- + * (Checked) dynamic allocation + * -------------------------------------------------------------------------- */ + +extern void *stgMallocBytes(int n, char *msg) + GNUC3_ATTRIBUTE(__malloc__); + extern void *stgReallocBytes(void *p, int n, char *msg); -extern void *stgCallocBytes(int n, int m, char *msg) GNUC3_ATTRIBUTE(__malloc__); + +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, ...); +/* ----------------------------------------------------------------------------- + * Misc other utilities + * -------------------------------------------------------------------------- */ extern void _stgAssert (char *filename, unsigned int linenum); @@ -29,11 +36,11 @@ extern void resetNonBlockingFd(int fd); extern nat stg_strlen(char *str); -char *time_str(void); -char *ullong_format_string(ullong, char *, rtsBool); +extern char *time_str(void); +extern char *ullong_format_string(ullong, char *, rtsBool); #ifdef PAR -ullong msTime(void); +extern ullong msTime(void); #endif #ifdef DEBUG