* cygheap.h (init_cygheap::_gtod): Remove.

* cygwin.din: Export clock_getres and clock_setres.
* hires.h (hires_ms::minperiod): Delete declaration.
(hires_ms::began_period): Ditto.
(hires_ms::prime): Make void.
(hires_ms::resolution): Just define here.
(hires_ms::usecs): Remove unneeded argument.
(gtod): Redeclare as a variable.
* timer.cc (timer_thread): Eliminate argument to gtod.usecs().
(timer_tracker::gettime): Ditto.
(timer_tracker::settime): Ditto.
* times.cc (gettimeofday): Ditto.
(hires_ms::began_period): Delete declaration.
(hires_us::prime): Remove debugging.
(hires_ms::prime): Make void.  Eliminate period stuff.
(hires_ms::usecs): Eliminate argument to gtod.usecs().
(hires_ms::resolution): New function.
(clock_getres): Ditto.
(clock_setres): Ditto.
* version.h: Bump API version to 143.
* include/cygwin/time.h: New file.
This commit is contained in:
Christopher Faylor
2005-11-11 16:42:15 +00:00
parent 37bd11ed12
commit ecb908f699
8 changed files with 145 additions and 58 deletions

View File

@@ -41,15 +41,12 @@ class hires_ms : hires_base
{
DWORD initime_ms;
LARGE_INTEGER initime_us;
UINT minperiod;
static bool began_period;
UINT prime ();
void prime ();
public:
LONGLONG usecs (bool justdelta);
LONGLONG usecs ();
UINT dmsecs () { return timeGetTime (); }
UINT resolution () { return minperiod ?: prime (); }
UINT resolution ();
};
#define gtod cygheap->_gtod
extern hires_ms gtod;
#endif /*__HIRES_H__*/