blob: e3a5c2dc696c0a8520ffeb905c8c505df8232a15 (
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 RTS_TIMER_H
#define RTS_TIMER_H
void startTimer (void);
void stopTimer (void);
#endif /* RTS_TIMER_H */
|