blob: 09d01bde54e48f9e862a095ad3ccb500f2914e3a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team 1998-2005
*
* Interval timer for profiling and pre-emptive scheduling.
*
* ---------------------------------------------------------------------------*/
#ifndef ITIMER_H
#define ITIMER_H
extern lnat getourtimeofday ( void );
#if 0
/* unused */
extern void block_vtalrm_signal ( void );
extern void unblock_vtalrm_signal ( void );
#endif
#endif /* ITIMER_H */
|