diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-07-26 09:44:41 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-07-26 09:44:41 -0400 |
commit | 264fb7eb82f5df59247f1e2f4ea906fd9a0def61 (patch) | |
tree | 774248070e1297d45f6afcb30f86deaac91d57d6 | |
parent | e77c23e455513ddb8f9fa5ad59f08fa1fa43cec6 (diff) | |
download | tor-264fb7eb82f5df59247f1e2f4ea906fd9a0def61.tar.gz tor-264fb7eb82f5df59247f1e2f4ea906fd9a0def61.zip |
debugging: print ticks-per-second on windows. is it 0?
-rw-r--r-- | src/common/compat_time.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/compat_time.c b/src/common/compat_time.c index 9fac0bcddf..da30a41a5c 100644 --- a/src/common/compat_time.c +++ b/src/common/compat_time.c @@ -404,6 +404,7 @@ monotime_init_internal(void) tor_assert(li.QuadPart); puts("win32-mii-6"); ticks_per_second = li.QuadPart; + printf(I64_FORMAT" ticks per second\n", I64_PRINTF_ARG(ticks_per_second)); last_pctr = 0; pctr_offset = 0; |