From 46645f9c6efc9009d7bada23d7ae5f03e6ed8bd3 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sat, 6 Sep 2003 02:14:06 +0000 Subject: [PATCH] * hires.h (hires_ms::~hires_ms): Delete declaration. * times.cc (hires_ms::~hires_ms): Delete definition.. --- winsup/cygwin/ChangeLog | 5 +++++ winsup/cygwin/hires.h | 1 - winsup/cygwin/times.cc | 5 ----- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index f85060831..7caf4a697 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2003-09-04 Pierre Humblet + + * hires.h (hires_ms::~hires_ms): Delete declaration. + * times.cc (hires_ms::~hires_ms): Delete definition.. + 2003-09-04 Christopher Faylor * dcrt0.cc (__argc_safe): New variable. diff --git a/winsup/cygwin/hires.h b/winsup/cygwin/hires.h index 31394a0df..b4599cb1b 100644 --- a/winsup/cygwin/hires.h +++ b/winsup/cygwin/hires.h @@ -41,6 +41,5 @@ class hires_ms : hires_base void prime (); public: LONGLONG usecs (bool justdelta); - ~hires_ms (); }; #endif /*__HIRES_H__*/ diff --git a/winsup/cygwin/times.cc b/winsup/cygwin/times.cc index 9fccae49f..0d4bc7112 100644 --- a/winsup/cygwin/times.cc +++ b/winsup/cygwin/times.cc @@ -657,8 +657,3 @@ hires_ms::usecs (bool justdelta) LONGLONG res = initime_us.QuadPart + ((LONGLONG) (now - initime_ms) * 1000); return res; } - -hires_ms::~hires_ms () -{ - timeEndPeriod (minperiod); -}