oops, undo accidental patch
[ghc-hetmet.git] / ghc / rts / ProfHeap.h
index 270dc55..0251416 100644 (file)
@@ -1,13 +1,19 @@
 /* -----------------------------------------------------------------------------
- * $Id: ProfHeap.h,v 1.1 1999/09/15 13:46:29 simonmar Exp $
  *
- * (c) The GHC Team, 1998-1999
+ * (c) The GHC Team, 1998-2005
  *
  * Support for heap profiling
  *
  * ---------------------------------------------------------------------------*/
 
+#ifndef PROFHEAP_H
+#define PROFHEAP_H
 
-void heapCensus(void);
-extern nat initHeapProfiling(void);
-void endHeapProfiling(void);
+extern void    heapCensus( void );
+extern nat     initHeapProfiling( void );
+extern void    endHeapProfiling( void );
+extern rtsBool closureSatisfiesConstraints( StgClosure* p );
+extern void    LDV_recordDead( StgClosure *c, nat size );
+extern rtsBool strMatchesSelector( char* str, char* sel );
+
+#endif /* PROFHEAP_H */