Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com From: "Philip Aston" MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15547.16136.163472.840007@bea.com> Date: Mon, 15 Apr 2002 21:58:48 +0100 To: cygwin AT cygwin DOT com Subject: [PATCH] gettimeofday time travels (Resent with appropriate subject in case the original was missed in the discussion thread). How about the attached quick and dirty fix? - Phil 2002-04-14 Philip Aston * times.cc (hires::usecs): Sync counter every ten minutes to work around suspend bug. Index: cygwin/times.cc =================================================================== RCS file: /cvs/src/src/winsup/cygwin/times.cc,v retrieving revision 1.30 diff -u -u -p -r1.30 times.cc --- cygwin/times.cc 28 Mar 2002 05:20:53 -0000 1.30 +++ cygwin/times.cc 14 Apr 2002 15:09:04 -0000 @@ -599,5 +599,14 @@ hires::usecs (bool justdelta) // FIXME: Use round() here? now.QuadPart = (LONGLONG) (freq * (double) (now.QuadPart - primed_pc.QuadPart)); + + /* Reinitialise every ten minutes. Cheap hack to correct time after + suspend and resume. */ + if (now.QuadPart > 600000000l) + { + inited = 0; + return usecs(justdelta); + } + return justdelta ? now.QuadPart : primed_ft.QuadPart + now.QuadPart; } -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/