Bug fixes in my refactored RnNames code.
[ghc-hetmet.git] / ghc / rts / Proftimer.h
index 915b0d0..c837b85 100644 (file)
@@ -1,14 +1,22 @@
 /* -----------------------------------------------------------------------------
- * $Id: Proftimer.h,v 1.2 1998/12/02 13:28:37 simonm Exp $
  *
- * (c) The GHC Team, 1998
+ * (c) The GHC Team, 1998-2005
  *
  * Profiling interval timer
  *
  * ---------------------------------------------------------------------------*/
 
-extern void initProfTimer(nat ms);
-extern void stopProfTimer(void);
-extern void startProfTimer(void);
-extern void handleProfTick(void);
+#ifndef PROFTIMER_H
+#define PROFTIMER_H
 
+extern void initProfTimer      ( void );
+extern void handleProfTick     ( void );
+
+extern void stopProfTimer      ( void );
+extern void startProfTimer     ( void );
+extern void stopHeapProfTimer  ( void );
+extern void startHeapProfTimer ( void );
+
+extern rtsBool performHeapProfile;
+
+#endif /* PROFTIMER_H */