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