summaryrefslogtreecommitdiff
path: root/lib/timeval.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-10-12 12:32:20 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-10-12 12:32:20 +0000
commit532bca41e59e10a86c356058831cf046a3ba78c9 (patch)
treedfaa7d33d510af6ea4db11724583ca0a26159cf7 /lib/timeval.c
parentb438c46764b680a314000b7ca69bb1d898379d0f (diff)
downloadcurl-532bca41e59e10a86c356058831cf046a3ba78c9.tar.gz
Curl_tvdiff() now returns a millisecond diff, no double like before
Diffstat (limited to 'lib/timeval.c')
-rw-r--r--lib/timeval.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/timeval.c b/lib/timeval.c
index d30ff74b2..f9284349d 100644
--- a/lib/timeval.c
+++ b/lib/timeval.c
@@ -69,9 +69,10 @@ struct timeval Curl_tvnow (void)
* Make sure that the first argument is the more recent time, as otherwise
* we'll get a weird negative time-diff back...
*/
-double Curl_tvdiff (struct timeval t1, struct timeval t2)
+long Curl_tvdiff (struct timeval t1, struct timeval t2)
{
- return (double)(t1.tv_sec - t2.tv_sec) + ((t1.tv_usec-t2.tv_usec)/1000000.0);
+ return (t1.tv_sec*1000 + t1.tv_usec/1000)-
+ (t2.tv_sec*1000 + t2.tv_usec/1000);
}
long Curl_tvlong (struct timeval t1)