summaryrefslogtreecommitdiff
path: root/rts/posix/Select.h
blob: 88255629744e9914e4d51da31f4a18ef72b0eca1 (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
/* -----------------------------------------------------------------------------
 *
 * (c) The GHC Team 1998-2005
 *
 * Prototypes for functions in Select.c
 *
 * -------------------------------------------------------------------------*/

#ifndef SELECT_H
#define SELECT_H

#if !defined(THREADED_RTS)
/* In Select.c */
extern lnat RTS_VAR(timestamp);

/* awaitEvent(rtsBool wait)
 *
 * Checks for blocked threads that need to be woken.
 *
 * Called from STG :  NO
 * Locks assumed   :  sched_mutex
 */
void awaitEvent(rtsBool wait);  /* In Select.c */
#endif

#endif /* SELECT_H */