blob: 59b695cac27d8eebdff8a28d7642a391f5eba12c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team, 1995-2006
*
* Interface to the RTS timer signal (uses OS-dependent Ticker.h underneath)
*
* ---------------------------------------------------------------------------*/
#ifndef TIMER_H
#define TIMER_H
extern void initTimer(void);
extern void startTimer(void);
extern void stopTimer(void);
extern void exitTimer(void);
#endif /* TIMER_H */
|