From: Andy Polyakov Date: Sun, 6 Nov 2005 17:11:04 +0000 (+0000) Subject: Revive app_tminterval for Netware. X-Git-Tag: OpenSSL_0_9_8k^2~1717 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=9135fddb0e7b66c4b1a2b82065f1ee4088840f4c;ds=sidebyside Revive app_tminterval for Netware. --- diff --git a/apps/apps.c b/apps/apps.c index 4468e50494..5a05604579 100644 --- a/apps/apps.c +++ b/apps/apps.c @@ -2424,6 +2424,28 @@ double app_tminterval(int stop,int usertime) return (ret); } +#elif defined(OPENSSL_SYSTEM_NETWARE) +#include + +double app_tminterval(int stop,int usertime) + { + double ret=0; + static clock_t tmstart; + static int warning=1; + + if (usertime && warning) + { + BIO_printf(bio_err,"To get meaningful results, run " + "this program on idle system.\n"); + warning=0; + } + + if (stop==TM_START) tmstart = clock(); + else ret = (clock()-tmstart)/(double)CLOCKS_PER_SEC; + + return (ret); + } + #elif defined(OPENSSL_SYSTEM_VXWORKS) #include