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