diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2015-01-09 01:00:59 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2015-01-09 01:00:59 +0000 |
commit | 1c032ec5855551c44b88f94fc35fa87db4279f0a (patch) | |
tree | 4aabf428c1346f01dbb65d726450d18add172603 /src/libstddjb/timeval_from_tain.c | |
parent | c2b04f3c900553ce385203b54e351df0e79449e1 (diff) | |
download | skalibs-1c032ec5855551c44b88f94fc35fa87db4279f0a.tar.xz |
tai conversion functions overhaul.
API change -> rc for 2.2.0.0
Doc updated.
Diffstat (limited to 'src/libstddjb/timeval_from_tain.c')
-rw-r--r-- | src/libstddjb/timeval_from_tain.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/libstddjb/timeval_from_tain.c b/src/libstddjb/timeval_from_tain.c index c780af7..2b4d577 100644 --- a/src/libstddjb/timeval_from_tain.c +++ b/src/libstddjb/timeval_from_tain.c @@ -3,11 +3,9 @@ #include <sys/time.h> #include <skalibs/tai.h> -int timeval_from_tain (struct timeval *tv, tain_t const *a) +int timeval_from_tain (struct timeval *tv, tain_t const *t) { - struct timeval tmp ; - if (!timeval_from_tai(&tmp, tain_secp(a))) return 0 ; - tv->tv_sec = tmp.tv_sec ; - tv->tv_usec = a->nano / 1000 ; + if (!time_from_tai(&tv->tv_sec, &t->sec)) return 0 ; + tv->tv_usec = (t->nano + 500) / 1000 ; return 1 ; } |