* times.cc (gettimeofday): Add temporary debugging output.

This commit is contained in:
Christopher Faylor 2005-11-02 18:28:40 +00:00
parent 71ac53ee13
commit 1c2812f80e
2 changed files with 6 additions and 0 deletions

View File

@ -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.

View File

@ -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;