aboutsummaryrefslogtreecommitdiff
path: root/plugins/utils.c
diff options
context:
space:
mode:
authorGravatar Karl DeBisschop <kdebisschop@users.sourceforge.net> 2002-10-16 21:32:33 +0000
committerGravatar Karl DeBisschop <kdebisschop@users.sourceforge.net> 2002-10-16 21:32:33 +0000
commitd02fedd5aab5d8d6047774a19eb21b27022e693d (patch)
treeb934b0fabaf583fb965ff32a691c375e272c8b10 /plugins/utils.c
parent71bd3b1d464ebd213731abb28f0648f506541b39 (diff)
downloadmonitoring-plugins-d02fedd5aab5d8d6047774a19eb21b27022e693d.tar.gz
millisecond timimg where supported
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@125 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/utils.c')
-rw-r--r--plugins/utils.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/utils.c b/plugins/utils.c
index 05d3f797..0d1729e0 100644
--- a/plugins/utils.c
+++ b/plugins/utils.c
@@ -317,14 +317,14 @@ is_option (char *str)
double
-delta_time (struct timeval *tv)
+delta_time (struct timeval tv)
{
- struct timeval *pt;
- struct timezone *tz;
+ struct timeval now;
+ struct timezone tz;
+ double et;
- gettimeofday (pt, tz);
-
- return (pt->tv_sec - tv->tv_sec + (pt->tv_usec - tv->tv_usec) / 1000000);
+ gettimeofday (&now, NULL);
+ return ((double)(now.tv_sec - tv.tv_sec) + (double)(now.tv_usec - tv.tv_usec) / (double)1000000);
}