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:
authorChristopher Faylor <me@cgf.cx>2005-11-02 21:28:40 +0300
committerChristopher Faylor <me@cgf.cx>2005-11-02 21:28:40 +0300
commit1c2812f80e7ec1776c037f2f1f9eb3211c2a5d05 (patch)
treef85553827019091bd85649e24ea4ddf7f4aa51b1
parent71ac53ee13b452310fdf8cb6acae0d8ba70c2848 (diff)
* times.cc (gettimeofday): Add temporary debugging output.
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/times.cc2
2 files changed, 6 insertions, 0 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 779e5451d..d6181ebea 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2005-11-02 Christopher Faylor <cgf@timesys.com>
+
+ * times.cc (gettimeofday): Add temporary debugging output.
+
2005-11-01 Christopher Faylor <cgf@timesys.com>
* include/sys/cygwin.h: Define CYGWIN_SIGNAL_STRING.
diff --git a/winsup/cygwin/times.cc b/winsup/cygwin/times.cc
index 7bb961d75..0652a12fb 100644
--- a/winsup/cygwin/times.cc
+++ b/winsup/cygwin/times.cc
@@ -152,7 +152,9 @@ extern "C" int
gettimeofday (struct timeval *tv, struct timezone *tz)
{
static bool tzflag;
+debug_printf ("prior to gtod.usecs"); // DELETEME
LONGLONG now = gtod.usecs (false);
+debug_printf ("after to gtod.usecs"); // DELETEME
if (now == (LONGLONG) -1)
return -1;