fix haddock submodule pointer
[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 #include "BeginPrivate.h"
13
14 void initProfTimer      ( void );
15 void handleProfTick     ( void );
16
17 #ifdef PROFILING
18 void stopProfTimer      ( void );
19 void startProfTimer     ( void );
20 #endif
21
22 void stopHeapProfTimer  ( void );
23 void startHeapProfTimer ( void );
24
25 extern rtsBool performHeapProfile;
26
27 #include "EndPrivate.h"
28
29 #endif /* PROFTIMER_H */