diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/times.cc | 2 |
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; |