blob: 32c375482957282983c33f3102d4b15cdb0273ad (
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
*
* Machine-independent interface to time measurement
*
* ---------------------------------------------------------------------------*/
#ifndef GETTIME_H
#define GETTIME_H
#include "BeginPrivate.h"
void initializeTimer (void);
Time getProcessCPUTime (void);
Time getThreadCPUTime (void);
Time getProcessElapsedTime (void);
void getProcessTimes (Time *user, Time *elapsed);
/* Get the current date and time.
Uses seconds since the Unix epoch, plus nanoseconds
*/
void getUnixEpochTime (StgWord64 *sec, StgWord32 *nsec);
// Not strictly timing, but related
W_ getPageFaults (void);
#include "EndPrivate.h"
#endif /* GETTIME_H */
|