2002-02-15 08:05:05 +01:00
|
|
|
/* hires.h: Definitions for hires clock calculations
|
|
|
|
|
|
|
|
Copyright 2002 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__
|
|
|
|
|
2002-06-07 05:44:33 +02:00
|
|
|
#include <mmsystem.h>
|
|
|
|
|
2003-09-07 07:18:01 +02:00
|
|
|
/* 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
|
|
|
|
|
2002-06-07 05:44:33 +02:00
|
|
|
class hires_base
|
2002-02-15 08:05:05 +01:00
|
|
|
{
|
2002-06-07 05:44:33 +02:00
|
|
|
protected:
|
2002-02-15 08:05:05 +01:00
|
|
|
int inited;
|
2002-06-07 05:44:33 +02:00
|
|
|
public:
|
|
|
|
virtual LONGLONG usecs (bool justdelta) {return 0LL;}
|
|
|
|
virtual ~hires_base () {}
|
|
|
|
};
|
|
|
|
|
|
|
|
class hires_us : hires_base
|
|
|
|
{
|
2002-02-15 08:05:05 +01:00
|
|
|
LARGE_INTEGER primed_ft;
|
|
|
|
LARGE_INTEGER primed_pc;
|
|
|
|
double freq;
|
2002-06-07 05:44:33 +02:00
|
|
|
void prime ();
|
|
|
|
public:
|
|
|
|
LONGLONG usecs (bool justdelta);
|
|
|
|
};
|
|
|
|
|
|
|
|
class hires_ms : hires_base
|
|
|
|
{
|
|
|
|
DWORD initime_ms;
|
|
|
|
LARGE_INTEGER initime_us;
|
2003-09-07 07:18:01 +02:00
|
|
|
static UINT minperiod;
|
|
|
|
UINT prime ();
|
2002-02-15 08:05:05 +01:00
|
|
|
public:
|
2002-06-07 05:44:33 +02:00
|
|
|
LONGLONG usecs (bool justdelta);
|
2003-09-07 07:18:01 +02:00
|
|
|
UINT dmsecs () { return timeGetTime (); }
|
|
|
|
UINT resolution () { return minperiod ?: prime (); }
|
|
|
|
|
2002-02-15 08:05:05 +01:00
|
|
|
};
|
2003-09-07 07:18:01 +02:00
|
|
|
|
|
|
|
extern hires_ms gtod;
|
2002-02-15 08:05:05 +01:00
|
|
|
#endif /*__HIRES_H__*/
|