mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
83 lines
1.7 KiB
C
83 lines
1.7 KiB
C
/* This file is part of hp2ps, a graph drawer for memory profiles.
|
|
Copyright (C) 2002 The University Court of the University of Glasgow.
|
|
This program is governed by the license contained in the file LICENSE. */
|
|
|
|
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
//#include "config.h"
|
|
|
|
//#ifdef __STDC__
|
|
#define PROTO(x) x
|
|
//#else
|
|
//#define PROTO(x) ()
|
|
//#endif
|
|
|
|
/* our own ASSERT macro (for C) */
|
|
#ifndef DEBUG
|
|
#define ASSERT(predicate) /*nothing*/
|
|
|
|
#else
|
|
void _ghcAssert PROTO((char *, unsigned int));
|
|
|
|
#define ASSERT(predicate) \
|
|
if (predicate) \
|
|
/*null*/; \
|
|
else \
|
|
_ghcAssert(__FILE__, __LINE__)
|
|
#endif
|
|
|
|
/* partain: some ubiquitous types: floatish & intish.
|
|
Dubious to use float/int, but that is what it used to be...
|
|
(WDP 95/03)
|
|
*/
|
|
typedef double floatish;
|
|
typedef double doublish; /* higher precision, if anything; little used */
|
|
typedef int boolish;
|
|
|
|
/* Use "long long" if we have it: the numbers in profiles can easily
|
|
* overflow 32 bits after a few seconds execution.
|
|
*/
|
|
#define HAVE_LONG_LONG 1 // --added by njn, because config.h removed
|
|
|
|
#ifdef HAVE_LONG_LONG
|
|
typedef long long int intish;
|
|
#else
|
|
typedef long int intish;
|
|
#endif
|
|
|
|
extern intish nsamples;
|
|
extern intish nmarks;
|
|
extern intish nidents;
|
|
|
|
extern floatish maxcombinedheight;
|
|
extern floatish areabelow;
|
|
extern floatish epsfwidth;
|
|
|
|
extern floatish xrange;
|
|
extern floatish yrange;
|
|
|
|
extern floatish auxxrange;
|
|
extern floatish auxyrange;
|
|
|
|
extern boolish eflag;
|
|
extern boolish gflag;
|
|
extern boolish yflag;
|
|
extern boolish bflag;
|
|
extern boolish sflag;
|
|
extern int mflag;
|
|
extern boolish tflag;
|
|
extern boolish cflag;
|
|
|
|
extern char *programname;
|
|
|
|
extern char *hpfile;
|
|
extern char *psfile;
|
|
extern char *auxfile;
|
|
|
|
extern FILE *hpfp;
|
|
extern FILE *psfp;
|
|
extern FILE *g_auxfp;
|
|
|
|
#endif /* MAIN_H */
|