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