[project @ 1999-02-05 16:02:18 by simonm]
[ghc-hetmet.git] / ghc / rts / Itimer.h
1 /* -----------------------------------------------------------------------------
2  * $Id: Itimer.h,v 1.3 1999/02/05 16:02:44 simonm Exp $
3  *
4  * (c) The GHC Team 1998-1999
5  *
6  * Interval timer for profiling and pre-emptive scheduling.
7  *
8  * ---------------------------------------------------------------------------*/
9
10 nat  initialize_virtual_timer  ( nat ms );
11 int  install_vtalrm_handler    ( void (*handler)(int) );
12 void block_vtalrm_signal       ( void );
13 void unblock_vtalrm_signal     ( void );
14
15