X-Git-Url: https://unix4lyfe.org/gitweb/darkstat-debian/blobdiff_plain/3c6b3682c70be84db86e70c191016913a9836c31..HEAD:/now.h diff --git a/now.h b/now.h index 03366e7..12231a4 100644 --- a/now.h +++ b/now.h @@ -23,8 +23,10 @@ void now_update(void); /* once per event loop (in darkstat.c) */ time_t now_real(void); time_t now_mono(void); -time_t mono_to_real(const time_t t); -time_t real_to_mono(const time_t t); +/* Monotonic times can be negative (a time from before the machine booted) so + * treat them as signed. */ +time_t mono_to_real(const int64_t t); +int64_t real_to_mono(const time_t t); /* Emits warnings if a call is too slow. */ struct timespec;