summaryrefslogtreecommitdiff
path: root/rts/Ticker.h
blob: 2958211ca1823f1fdff6c802af853e4ee10a3d64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* -----------------------------------------------------------------------------
 *
 * (c) The GHC Team 2005
 *
 * Interface to the OS-specific implementation of a regular time signal.
 *
 * ---------------------------------------------------------------------------*/

#ifndef TICKER_H
#define TICKER_H

#include "BeginPrivate.h"

typedef void (*TickProc)(int);

void initTicker  (Time interval, TickProc handle_tick);
void startTicker (void);
void stopTicker  (void);
void exitTicker  (rtsBool wait);

#include "EndPrivate.h"

#endif /* TICKER_H */

// Local Variables:
// mode: C
// fill-column: 80
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End: