summaryrefslogtreecommitdiff
path: root/src/common/compat_time.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-04-10 10:47:11 -0400
committerNick Mathewson <nickm@torproject.org>2018-04-13 10:41:08 -0400
commitd8ef9a2d1e0701073d8209115bc3c34857c2d7b4 (patch)
treefd7439b0c9d3d743e9fcde67ae5ebc5ad785381f /src/common/compat_time.h
parent16f08de0fd85b9fe8ace9f4905190fa6dc27e4ea (diff)
downloadtor-d8ef9a2d1e0701073d8209115bc3c34857c2d7b4.tar.gz
tor-d8ef9a2d1e0701073d8209115bc3c34857c2d7b4.zip
Expose a function that computes stamp units from msec.
(It turns out we can't just expose STAMP_TICKS_PER_SECOND, since Apple doesn't have that.)
Diffstat (limited to 'src/common/compat_time.h')
-rw-r--r--src/common/compat_time.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/compat_time.h b/src/common/compat_time.h
index 6ddd11883d..75b57f6f24 100644
--- a/src/common/compat_time.h
+++ b/src/common/compat_time.h
@@ -150,6 +150,7 @@ uint32_t monotime_coarse_to_stamp(const monotime_coarse_t *t);
* into an approximate number of milliseconds.
*/
uint64_t monotime_coarse_stamp_units_to_approx_msec(uint64_t units);
+uint64_t monotime_msec_to_approx_coarse_stamp_units(uint64_t msec);
uint32_t monotime_coarse_get_stamp(void);
#if defined(MONOTIME_COARSE_TYPE_IS_DIFFERENT)