summaryrefslogtreecommitdiff
path: root/source4/lib/time.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2005-08-01 00:34:39 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:30:14 -0500
commit5bddfe7a1a094d86dffaa0f8a52c2e35d6453b2d (patch)
treeb878d0d6b750a25f3b3b5eab12acdf32697aea44 /source4/lib/time.c
parent555eee1456737abacbe59db1d1bb82370507f031 (diff)
downloadsamba-5bddfe7a1a094d86dffaa0f8a52c2e35d6453b2d.tar.gz
samba-5bddfe7a1a094d86dffaa0f8a52c2e35d6453b2d.tar.bz2
samba-5bddfe7a1a094d86dffaa0f8a52c2e35d6453b2d.zip
r8875: Rename timeval_diff to timeval_until and revert the arguments. timeval_diff is
not strictly a subtraction function, there can't be negative timevals. Volker (This used to be commit 525d75dd24f6a8810f1ed2043d170c70b060f1f0)
Diffstat (limited to 'source4/lib/time.c')
-rw-r--r--source4/lib/time.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source4/lib/time.c b/source4/lib/time.c
index 7b371f58dd..1fce5af06d 100644
--- a/source4/lib/time.c
+++ b/source4/lib/time.c
@@ -561,21 +561,21 @@ struct timeval timeval_max(struct timeval *tv1, struct timeval *tv2)
/*
return the difference between two timevals as a timeval
- if tv2 comes after tv1, then return a zero timeval
- (this is *tv1 - *tv2)
+ if tv1 comes after tv2, then return a zero timeval
+ (this is *tv2 - *tv1)
*/
-struct timeval timeval_diff(struct timeval *tv1, struct timeval *tv2)
+struct timeval timeval_until(struct timeval *tv1, struct timeval *tv2)
{
struct timeval t;
- if (timeval_compare(tv1, tv2) >= 0) {
+ if (timeval_compare(tv2, tv1) >= 0) {
return timeval_zero();
}
- t.tv_sec = tv1->tv_sec - tv2->tv_sec;
- if (tv2->tv_usec > tv1->tv_usec) {
+ t.tv_sec = tv2->tv_sec - tv1->tv_sec;
+ if (tv1->tv_usec > tv2->tv_usec) {
t.tv_sec--;
- t.tv_usec = 1000000 - (tv2->tv_usec - tv1->tv_usec);
+ t.tv_usec = 1000000 - (tv1->tv_usec - tv2->tv_usec);
} else {
- t.tv_usec = tv1->tv_usec - tv2->tv_usec;
+ t.tv_usec = tv2->tv_usec - tv1->tv_usec;
}
return t;
}