1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 1995-2009
4  *
5  * Interface to the RTS timer signal (uses OS-dependent Ticker.h underneath)
6  *
7  * Do not #include this file directly: #include "Rts.h" instead.
8  *
9  * To understand the structure of the RTS headers, see the wiki:
10  *   https://gitlab.haskell.org/ghc/ghc/wikis/commentary/source-tree/includes
11  *
12  * ---------------------------------------------------------------------------*/
13 
14 #pragma once
15 
16 void startTimer (void);
17 void stopTimer  (void);
18 int rtsTimerSignal (void);
19