diff options
Diffstat (limited to 'rts/posix/Itimer.h')
-rw-r--r-- | rts/posix/Itimer.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/rts/posix/Itimer.h b/rts/posix/Itimer.h new file mode 100644 index 0000000000..09d01bde54 --- /dev/null +++ b/rts/posix/Itimer.h @@ -0,0 +1,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 */ |