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/Makefile.am | |
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 'src/xz/Makefile.am')
-rw-r--r-- | src/xz/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xz/Makefile.am b/src/xz/Makefile.am index 10ceee75..3d3154ed 100644 --- a/src/xz/Makefile.am +++ b/src/xz/Makefile.am @@ -22,6 +22,8 @@ xz_SOURCES = \ main.h \ message.c \ message.h \ + mytime.c \ + mytime.h \ options.c \ options.h \ private.h \ |