blob: 50d49d4ba5abd117ce4eac464c823a32f937b3c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team 1998-2005
*
* Prototypes for functions in Select.c
*
* -------------------------------------------------------------------------*/
#ifndef POSIX_SELECT_H
#define POSIX_SELECT_H
// An absolute time value in units of 10ms.
typedef StgWord LowResTime;
RTS_PRIVATE LowResTime getDelayTarget (HsInt us);
#endif /* POSIX_SELECT_H */
|