blob: ddc670568c576a2c11fc9c0962a695af92d9144a (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* hires.h: Definitions for hires clock calculations
Copyright 2002, 2003, 2004, 2005 Red Hat, Inc.
This file is part of Cygwin.
This software is a copyrighted work licensed under the terms of the
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
details. */
#ifndef __HIRES_H__
#define __HIRES_H__
#include <mmsystem.h>
/* Largest delay in ms for sleep and alarm calls.
Allow actual delay to exceed requested delay by 10 s.
Express as multiple of 1000 (i.e. seconds) + max resolution
The tv_sec argument in timeval structures cannot exceed
HIRES_DELAY_MAX / 1000 - 1, so that adding fractional part
and rounding won't exceed HIRES_DELAY_MAX */
#define HIRES_DELAY_MAX ((((UINT_MAX - 10000) / 1000) * 1000) + 10)
class hires_base
{
protected:
int inited;
};
class hires_us : hires_base
{
LARGE_INTEGER primed_ft;
LARGE_INTEGER primed_pc;
double freq;
void prime ();
public:
LONGLONG usecs (bool justdelta);
};
class hires_ms : hires_base
{
DWORD initime_ms;
LARGE_INTEGER initime_us;
void prime ();
public:
LONGLONG usecs ();
UINT dmsecs () { return timeGetTime (); }
UINT resolution ();
};
extern hires_ms gtod;
#endif /*__HIRES_H__*/
|