diff options
author | Nicolas Frisby <nicolas.frisby@gmail.com> | 2013-08-22 15:00:41 -0500 |
---|---|---|
committer | Nicolas Frisby <nicolas.frisby@gmail.com> | 2013-08-22 15:00:54 -0500 |
commit | 84f9927c1a04b8e35b97101771d8f6d625643d9b (patch) | |
tree | 050d7265a24fa1ff9aecc4081bb01bc444520587 /rts/FrontPanel.h | |
parent | 2eaf46fb1bb8c661c03f3e5e80622207ef2509d9 (diff) | |
parent | c24be4b761df558d9edc9c0b1554bb558c261b14 (diff) | |
download | haskell-late-dmd.tar.gz |
merged master into late-dmdlate-dmd
Diffstat (limited to 'rts/FrontPanel.h')
-rw-r--r-- | rts/FrontPanel.h | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/rts/FrontPanel.h b/rts/FrontPanel.h deleted file mode 100644 index 84e40d5e1b..0000000000 --- a/rts/FrontPanel.h +++ /dev/null @@ -1,39 +0,0 @@ -/* ----------------------------------------------------------------------------- - * - * (c) The GHC Team 2000-2005 - * - * RTS GTK Front Panel - * - * ---------------------------------------------------------------------------*/ - -#ifndef FRONTPANEL_H -#define FRONTPANEL_H - -#include "BeginPrivate.h" - -#ifdef RTS_GTK_FRONTPANEL - -#include "Rts.h" /* needed because this file gets included by - * auto-generated code */ - -void initFrontPanel( void ); -void stopFrontPanel( void ); -void updateFrontPanelBeforeGC( nat N ); -void updateFrontPanelAfterGC( nat N, W_ live ); -void updateFrontPanel( void ); - - -/* --------- PRIVATE ----------------------------------------- */ - -#include <gdk/gdktypes.h> - -typedef enum { BeforeGC, AfterGC, BeforeAfterGC, Continuous } UpdateMode; -extern UpdateMode update_mode; -extern gboolean continue_now, stop_now, quit; - -#endif /* RTS_GTK_FRONTPANEL */ - -#include "EndPrivate.h" - -#endif /* FRONTPANEL_H */ - |