blob: 1fe857d9692b600ed27a971b76acc18aa88db3d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team, 1995-2006
*
* Interval timer service for profiling and pre-emptive scheduling.
*
* ---------------------------------------------------------------------------*/
#ifndef TIMER_H
#define TIMER_H
typedef void (*TickProc)(int);
extern int startTimer(void);
extern int stopTimer(void);
#endif /* TIMER_H */
|