diff options
Diffstat (limited to 'plugins/t')
0 files changed, 0 insertions, 0 deletions
diff --git a/plugins/utils.c b/plugins/utils.c index c2261dc..518caa8 100644 --- a/plugins/utils.c +++ b/plugins/utils.c | |||
@@ -287,6 +287,16 @@ delta_time (struct timeval tv) | |||
287 | 287 | ||
288 | 288 | ||
289 | 289 | ||
290 | long | ||
291 | deltime (struct timeval tv) | ||
292 | { | ||
293 | struct timeval now; | ||
294 | gettimeofday (&now, NULL); | ||
295 | return (now.tv_sec - tv.tv_sec)*1000000 + now.tv_usec - tv.tv_usec; | ||
296 | } | ||
297 | |||
298 | |||
299 | |||
290 | 300 | ||
291 | void | 301 | void |
292 | strip (char *buffer) | 302 | strip (char *buffer) |
diff --git a/plugins/utils.h b/plugins/utils.h index c378e45..b763b1e 100644 --- a/plugins/utils.h +++ b/plugins/utils.h | |||
@@ -59,6 +59,7 @@ int gettimeofday(struct timeval *tv, struct timezone *tz); | |||
59 | #endif | 59 | #endif |
60 | 60 | ||
61 | double delta_time (struct timeval tv); | 61 | double delta_time (struct timeval tv); |
62 | long deltime (struct timeval tv); | ||
62 | 63 | ||
63 | /* Handle strings safely */ | 64 | /* Handle strings safely */ |
64 | 65 | ||