RTS tidyup sweep, first phase
[ghc-hetmet.git] / rts / Proftimer.h
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 1998-2005
4  *
5  * Profiling interval timer
6  *
7  * ---------------------------------------------------------------------------*/
8
9 #ifndef PROFTIMER_H
10 #define PROFTIMER_H
11
12 extern void initProfTimer      ( void );
13 extern void handleProfTick     ( void );
14
15 #ifdef PROFILING
16 extern void stopProfTimer      ( void );
17 extern void startProfTimer     ( void );
18 #endif
19
20 extern void stopHeapProfTimer  ( void );
21 extern void startHeapProfTimer ( void );
22
23 extern rtsBool performHeapProfile;
24
25 #endif /* PROFTIMER_H */