summaryrefslogtreecommitdiff
path: root/src/common/compat_time.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-07-21 10:25:23 +0200
committerNick Mathewson <nickm@torproject.org>2016-07-21 10:25:23 +0200
commit2999f0b33fec8e91ba8e4680d3f9d03b09fe9501 (patch)
treee6da0915cfe1bc4ad5dff011549d930a942d5de0 /src/common/compat_time.c
parenta31078a581c35310cd642b16ce57efd5b888f6dc (diff)
downloadtor-2999f0b33fec8e91ba8e4680d3f9d03b09fe9501.tar.gz
tor-2999f0b33fec8e91ba8e4680d3f9d03b09fe9501.zip
Make the monotonic{_coarse,}_get() functions mockable.
Diffstat (limited to 'src/common/compat_time.c')
-rw-r--r--src/common/compat_time.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/common/compat_time.c b/src/common/compat_time.c
index b7d69cf400..974cf32b49 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();