[tor-commits] [tor/master] Redux^3: Temporarily add windows verbosity to track down jenkins failures

nickm at torproject.org nickm at torproject.org
Tue Jul 26 14:36:54 UTC 2016


commit 160d2c6aab6016b0e5774a3b909dd8c03bb2467a
Author: Nick Mathewson <nickm at torproject.org>
Date:   Tue Jul 26 08:56:55 2016 -0400

    Redux^3: Temporarily add windows verbosity to track down jenkins failures
---
 src/common/compat_time.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/common/compat_time.c b/src/common/compat_time.c
index 1ff5cc1..bdbf2b5 100644
--- a/src/common/compat_time.c
+++ b/src/common/compat_time.c
@@ -471,20 +471,20 @@ int64_t
 monotime_diff_nsec(const monotime_t *start,
                    const monotime_t *end)
 {
-#ifdef _WIN32
-  puts("m_d_n: 1");
-#endif
   if (BUG(monotime_initialized == 0)) {
     monotime_init();
   }
-#ifdef _WIN32
-  puts("m_d_n: 2");
-#endif
   const int64_t diff_ticks = end->pcount_ - start->pcount_;
 #ifdef _WIN32
   puts("m_d_n: 3");
+  printf(I64_FORMAT" diff_ticks\n", I64_PRINTF_ARG(diff_ticks));
+  printf(I64_FORMAT" ticks per second\n", I64_PRINTF_ARG(ticks_per_second));
+#endif
+  const int64_t result = (diff_ticks * ONE_BILLION) / ticks_per_second;
+#ifdef _WIN32
+  printf(I64_FORMAT" res\n", I64_PRINTF_ARG(result));
 #endif
-  return (diff_ticks * ONE_BILLION) / ticks_per_second;
+  return res;
 }
 
 int64_t



More information about the tor-commits mailing list