diff options
author | Christopher Faylor <me@cgf.cx> | 2002-02-15 07:05:05 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-02-15 07:05:05 +0000 |
commit | dce87b21e14f3a59d666cfe0a64261703c35d986 (patch) | |
tree | ff8b052558a092f6bbdc209f876063d41f17e044 /winsup/cygwin/hires.h | |
parent | d33ab699885c0f654139481d6c1c77eb950e4851 (diff) | |
download | cygnal-dce87b21e14f3a59d666cfe0a64261703c35d986.tar.gz cygnal-dce87b21e14f3a59d666cfe0a64261703c35d986.tar.bz2 cygnal-dce87b21e14f3a59d666cfe0a64261703c35d986.zip |
* hires.h: New file.
* times.cc (gettimeofday): Use hires class for calculating current time.
(hires::prime): New method.
(hires::utime): Ditto.
Diffstat (limited to 'winsup/cygwin/hires.h')
-rw-r--r-- | winsup/cygwin/hires.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/winsup/cygwin/hires.h b/winsup/cygwin/hires.h new file mode 100644 index 000000000..06a00166d --- /dev/null +++ b/winsup/cygwin/hires.h @@ -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__*/ |