summaryrefslogtreecommitdiff
path: root/rts/Ticker.h
diff options
context:
space:
mode:
Diffstat (limited to 'rts/Ticker.h')
-rw-r--r--rts/Ticker.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/rts/Ticker.h b/rts/Ticker.h
new file mode 100644
index 0000000000..f9555768b5
--- /dev/null
+++ b/rts/Ticker.h
@@ -0,0 +1,15 @@
+/* -----------------------------------------------------------------------------
+ *
+ * (c) The GHC Team 2005
+ *
+ * Ticker interface (implementation is OS-specific)
+ *
+ * ---------------------------------------------------------------------------*/
+
+#ifndef TICKER_H
+#define TICKER_H
+
+extern int startTicker( nat ms, TickProc handle_tick );
+extern int stopTicker ( void );
+
+#endif /* TICKER_H */