[tor-commits] [tor/master] Make the monotonic{_coarse, }_get() functions mockable.

nickm at torproject.org nickm at torproject.org
Thu Jul 21 08:25:31 UTC 2016


commit 2999f0b33fec8e91ba8e4680d3f9d03b09fe9501
Author: Nick Mathewson <nickm at torproject.org>
Date:   Thu Jul 21 10:25:23 2016 +0200

    Make the monotonic{_coarse,}_get() functions mockable.
---
 src/common/compat_time.c | 24 ++++++++++++------------
 src/common/compat_time.h |  4 ++--
 2 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/src/common/compat_time.c b/src/common/compat_time.c
index b7d69cf..974cf32 100644
--- a/src/common/compat_time.c
+++ b/src/common/compat_time.c
@@ -220,8 +220,8 @@ monotime_init_internal(void)
 /**
  * Set "out" to the most recent monotonic time value
  */
-void
-monotime_get(monotime_t *out)
+MOCK_IMPL(void,
+monotime_get,(monotime_t *out))
 {
   out->abstime_ = mach_absolute_time();
 }
@@ -251,16 +251,16 @@ monotime_init_internal(void)
   /* no action needed. */
 }
 
-void
-monotime_get(monotime_t *out)
+MOCK_IMPL(void,
+monotime_get,(monotime_t *out))
 {
   int r = clock_gettime(CLOCK_MONOTONIC, &out->ts_);
   tor_assert(r == 0);
 }
 
 #ifdef CLOCK_MONOTONIC_COARSE
-void
-monotime_coarse_get(monotime_coarse_t *out)
+MOCK_IMPL(void,
+monotime_coarse_get,(monotime_coarse_t *out))
 {
   int r = clock_gettime(CLOCK_MONOTONIC_COARSE, &out->ts_);
   tor_assert(r == 0);
@@ -316,8 +316,8 @@ monotime_init_internal(void)
   // FreeLibrary(h) ?
 }
 
-void
-monotime_get(monotime_t *out)
+MOCK_IMPL(void,
+monotime_get,(monotime_t *out))
 {
   if (BUG(monotime_initialized == 0)) {
     monotime_init();
@@ -337,8 +337,8 @@ monotime_get(monotime_t *out)
   LeaveCriticalSection(&monotime_lock);
 }
 
-void
-monotime_coarse_get(monotime_coarse_t *out)
+MOCK_IMPL(void,
+monotime_coarse_get,(monotime_coarse_t *out))
 {
   if (GetTickCount64_fn) {
     out->tick_count_ = (int64_t)GetTickCount64_fn();
@@ -396,8 +396,8 @@ monotime_init_internal(void)
   tor_mutex_init(&monotime_lock);
 }
 
-void
-monotime_get(monotime_t *out)
+MOCK_IMPL(void,
+monotime_get,(monotime_t *out))
 {
   if (BUG(monotime_initialized == 0)) {
     monotime_init();
diff --git a/src/common/compat_time.h b/src/common/compat_time.h
index 8d61bc2..206e5b6 100644
--- a/src/common/compat_time.h
+++ b/src/common/compat_time.h
@@ -72,7 +72,7 @@ void monotime_init(void);
 /**
  * Set <b>out</b> to the current time.
  */
-void monotime_get(monotime_t *out);
+MOCK_DECL(void, monotime_get, (monotime_t *out));
 /**
  * Return the number of nanoseconds between <b>start</b> and <b>end</b>.
  */
@@ -102,7 +102,7 @@ uint64_t monotime_absolute_msec(void);
 /**
  * Set <b>out</b> to the current coarse time.
  */
-void monotime_coarse_get(monotime_coarse_t *out);
+MOCK_DECL(void, monotime_coarse_get, (monotime_coarse_t *out));
 uint64_t monotime_coarse_absolute_nsec(void);
 uint64_t monotime_coarse_absolute_usec(void);
 uint64_t monotime_coarse_absolute_msec(void);



More information about the tor-commits mailing list