add freeStorage() prototype
[ghc-hetmet.git] / ghc / rts / Printer.h
index b44847e..54bf611 100644 (file)
@@ -1,12 +1,14 @@
 /* -----------------------------------------------------------------------------
- * $Id: Printer.h,v 1.4 1999/06/29 13:04:40 panne Exp $
  *
- * (c) The GHC Team, 1998-1999
+ * (c) The GHC Team, 1998-2005
  *
  * Prototypes for functions in Printer.c
  *
  * ---------------------------------------------------------------------------*/
 
+#ifndef PRINTER_H
+#define PRINTER_H
+
 extern void       printPtr        ( StgPtr p );
 extern void       printObj        ( StgClosure *obj );
 
@@ -14,12 +16,16 @@ extern void            printObj        ( StgClosure *obj );
 extern void       printClosure    ( StgClosure *obj );
 extern StgStackPtr printStackObj   ( StgStackPtr sp );
 extern void        printStackChunk ( StgStackPtr sp, StgStackPtr spLim );
-extern void        printStack      ( StgStackPtr sp, StgStackPtr spLim, 
-                                    StgUpdateFrame* su );
 extern void        printTSO        ( StgTSO *tso );
 
+void                      info_hdr_type   ( StgClosure *closure, char *res );
+char  *                   info_type       ( StgClosure *closure );
+char  *                   info_type_by_ip ( StgInfoTable *ip );
 
 extern void DEBUG_LoadSymbols( char *name );
 
-extern rtsBool lookupGHCName( StgPtr addr, const char **result );
+extern const char *lookupGHCName( void *addr );
 #endif
+
+#endif /* PRINTER_H */
+