* hires.h: New file.

* times.cc (gettimeofday): Use hires class for calculating current time.
(hires::prime): New method.
(hires::utime): Ditto.
This commit is contained in:
Christopher Faylor
2002-02-15 07:05:05 +00:00
parent d33ab69988
commit dce87b21e1
3 changed files with 96 additions and 23 deletions

24
winsup/cygwin/hires.h Normal file
View File

@@ -0,0 +1,24 @@
/* 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__
class hires
{
int inited;
LARGE_INTEGER primed_ft;
LARGE_INTEGER primed_pc;
double freq;
void prime ();
public:
LONGLONG utime ();
};
#endif /*__HIRES_H__*/