blob: 86c5511df9a35d9feb76d7cf2132aeb96d7e71fa (
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
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team 2005
*
* Machine-independent interface to time measurement
*
* ---------------------------------------------------------------------------*/
#ifndef GETTIME_H
#define GETTIME_H
#include "BeginPrivate.h"
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
nat getPageFaults (void);
#include "EndPrivate.h"
#endif /* GETTIME_H */
|