1 /* -----------------------------------------------------------------------------
3 * (c) The GHC Team 2005
5 * Interface to the OS-specific implementation of a regular time signal.
7 * ---------------------------------------------------------------------------*/
12 #include "BeginPrivate.h"
14 typedef void (*TickProc
)(int);
16 void initTicker (Time interval
, TickProc handle_tick
);
17 void startTicker (void);
18 void stopTicker (void);
19 void exitTicker (rtsBool wait
);
21 #include "EndPrivate.h"