X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FRtsUtils.h;h=3ee597113f50a42d6afbd6d43f8153c8d88ae5e7;hb=20d697a1c300663df2c1472e222e57c84c4385fc;hp=7b38afb2f009af32852ad206eeed089bf056eec5;hpb=f74458a707d766e7b9b04db7d27cb3f697100e4f;p=ghc-hetmet.git diff --git a/ghc/rts/RtsUtils.h b/ghc/rts/RtsUtils.h index 7b38afb..3ee5971 100644 --- a/ghc/rts/RtsUtils.h +++ b/ghc/rts/RtsUtils.h @@ -1,21 +1,31 @@ /* ----------------------------------------------------------------------------- - * $Id: RtsUtils.h,v 1.16 2003/03/31 19:19:34 sof Exp $ * - * (c) The GHC Team, 1998-1999 + * (c) The GHC Team, 1998-2004 * * General utility functions used in the RTS. * * ---------------------------------------------------------------------------*/ -/* (Checked) dynamic allocation: */ -extern void *stgMallocBytes(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 *stgCallocBytes(int n, int m, char *msg); + +extern void *stgCallocBytes(int n, int m, char *msg) + GNUC3_ATTRIBUTE(__malloc__); + extern void stgFree(void* p); -extern void barf(char *s, ...) __attribute__((__noreturn__)) ; -extern void belch(char *s, ...); -extern void prog_belch(char *s, ...); +/* ----------------------------------------------------------------------------- + * Misc other utilities + * -------------------------------------------------------------------------- */ extern void _stgAssert (char *filename, unsigned int linenum); @@ -26,16 +36,22 @@ 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); #ifdef PAR -ullong msTime(void); +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); + +#if defined(openbsd_TARGET_OS) +extern int genericRaise(int sig); +#endif + +#endif // RTSUTILS_H