[project @ 1999-12-03 15:55:29 by chak]
[ghc-hetmet.git] / ghc / rts / ProfRts.h
1 /* -----------------------------------------------------------------------------
2  * $Id: ProfRts.h,v 1.7 1999/12/03 15:55:29 chak Exp $
3  *
4  * (c) The GHC Team, 1998-1999
5  *
6  * Support for profiling
7  *
8  * ---------------------------------------------------------------------------*/
9
10 #if defined(PROFILING) || defined(DEBUG)
11 void initProfiling ( void );
12 void endProfiling  ( void );
13 #endif
14
15 #ifdef PROFILING
16
17 void report_ccs_profiling ( void );
18 void heap_profile_finish (void);
19
20 void PrintNewStackDecls ( void );
21
22 void print_ccs (FILE *, CostCentreStack *);
23
24 # define DEFAULT_INTERVAL TICK_FREQUENCY
25
26 extern rtsBool time_profiling;
27
28 #endif