From: jsing Date: Mon, 5 May 2014 16:06:55 +0000 (+0000) Subject: OpenBSD has_SC_CLK_TCK. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=3d7bed866c754188b1ca8a1705cb1dc636db9429;p=openbsd OpenBSD has_SC_CLK_TCK. ok miod@ --- 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)