From 3d7bed866c754188b1ca8a1705cb1dc636db9429 Mon Sep 17 00:00:00 2001 From: jsing Date: Mon, 5 May 2014 16:06:55 +0000 Subject: [PATCH] OpenBSD has_SC_CLK_TCK. ok miod@ --- lib/libssl/src/apps/apps.c | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/lib/libssl/src/apps/apps.c b/lib/libssl/src/apps/apps.c index 5e6b94f84b7..b2efe6db39f 100644 --- a/lib/libssl/src/apps/apps.c +++ b/lib/libssl/src/apps/apps.c @@ -2454,7 +2454,6 @@ next_protos_parse(unsigned short *outlen, const char *in) */ /* app_tminterval section */ -#if defined(_SC_CLK_TCK) /* by means of unistd.h */ #include double @@ -2478,32 +2477,6 @@ app_tminterval(int stop, int usertime) return (ret); } -#else -#include -#include - -double -app_tminterval(int stop, int usertime) -{ - double ret = 0; - struct rusage rus; - struct timeval now; - static struct timeval tmstart; - - if (usertime) - getrusage(RUSAGE_SELF, &rus), now = rus.ru_utime; - else - gettimeofday(&now, NULL); - - if (stop == TM_START) - tmstart = now; - else - ret = ((now.tv_sec + now.tv_usec * 1e-6) - - (tmstart.tv_sec + tmstart.tv_usec * 1e-6)); - - return ret; -} -#endif int app_isdir(const char *name) -- 2.20.1