diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2013-07-04 12:51:57 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2013-07-04 12:51:57 +0300 |
commit | 736903c64bef394c06685d79908e397bcb08b88f (patch) | |
tree | 43fe081b093ef6ec278ae67099af4a25356a3008 /src/xz/private.h | |
parent | Update THANKS. (diff) | |
download | xz-736903c64bef394c06685d79908e397bcb08b88f.tar.xz |
xz: Move some of the timing code into mytime.[hc].
This switches units from microseconds to milliseconds.
New clock_gettime(CLOCK_MONOTONIC) will be used if available.
There is still a fallback to gettimeofday().
Diffstat (limited to '')
-rw-r--r-- | src/xz/private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/xz/private.h b/src/xz/private.h index 978f81a3..9576da82 100644 --- a/src/xz/private.h +++ b/src/xz/private.h @@ -47,6 +47,7 @@ #endif #include "main.h" +#include "mytime.h" #include "coder.h" #include "message.h" #include "args.h" |