Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/hires.h1
-rw-r--r--winsup/cygwin/times.cc5
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 <pierre.humblet@ieee.org>
+
+ * hires.h (hires_ms::~hires_ms): Delete declaration.
+ * times.cc (hires_ms::~hires_ms): Delete definition..
+
2003-09-04 Christopher Faylor <cgf@redhat.com>
* 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);
-}