blob: 15fa00ac66b9135bfcc356227aef13fa30c2fa05 (
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 getourtimeofday ( void );
#endif /* POSIX_SELECT_H */
|