diff options
author | Christopher Faylor <me@cgf.cx> | 2005-11-02 18:28:40 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-11-02 18:28:40 +0000 |
commit | 1c2812f80e7ec1776c037f2f1f9eb3211c2a5d05 (patch) | |
tree | f85553827019091bd85649e24ea4ddf7f4aa51b1 | |
parent | 71ac53ee13b452310fdf8cb6acae0d8ba70c2848 (diff) | |
download | cygnal-1c2812f80e7ec1776c037f2f1f9eb3211c2a5d05.tar.gz cygnal-1c2812f80e7ec1776c037f2f1f9eb3211c2a5d05.tar.bz2 cygnal-1c2812f80e7ec1776c037f2f1f9eb3211c2a5d05.zip |
* times.cc (gettimeofday): Add temporary debugging output.
-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; |