From: cheloha Date: Wed, 22 Aug 2018 20:36:24 +0000 (+0000) Subject: Use a monotonic clock for the benchmark timeout. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=ce92332ec2422c84ce52a8a75bf45beb19524d62;p=openbsd Use a monotonic clock for the benchmark timeout. While here, we don't need the app_timer_* wrapper function, it only obfuscates things, so delete it. Also while here, totalTime only needs to be assigned once. ok tb@ --- diff --git a/usr.bin/openssl/s_time.c b/usr.bin/openssl/s_time.c index 8aa3d9fbea7..906d36228fe 100644 --- a/usr.bin/openssl/s_time.c +++ b/usr.bin/openssl/s_time.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s_time.c,v 1.28 2018/08/21 15:56:39 cheloha Exp $ */ +/* $OpenBSD: s_time.c,v 1.29 2018/08/22 20:36:24 cheloha Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -226,18 +226,6 @@ s_time_usage(void) options_usage(s_time_options); } -/*********************************************************************** - * TIME - time functions - */ -#define START TM_RESET -#define STOP TM_GET - -static double -tm_Time_F(int op) -{ - return app_timer_user(op); -} - /*********************************************************************** * MAIN - main processing area for client * real name depends on MONOLITH @@ -407,10 +395,9 @@ run_test(SSL *scon) static int benchmark(int reuse_session) { - double totalTime = 0.0; + double elapsed, totalTime; int nConn = 0; SSL *scon = NULL; - time_t finishtime; int ret = 1; int ver; @@ -426,15 +413,13 @@ benchmark(int reuse_session) } nConn = 0; - totalTime = 0.0; - - finishtime = time(NULL) + s_time_config.maxtime; - bytes_read = 0; - tm_Time_F(START); + app_timer_real(TM_RESET); + app_timer_user(TM_RESET); for (;;) { - if (finishtime < time(NULL)) + elapsed = app_timer_real(TM_GET); + if (elapsed > s_time_config.maxtime) break; if (scon == NULL) { if ((scon = SSL_new(tm_ctx)) == NULL) @@ -464,13 +449,13 @@ benchmark(int reuse_session) scon = NULL; } } - totalTime += tm_Time_F(STOP); /* Add the time for this iteration */ + totalTime = app_timer_user(TM_GET); printf("\n\n%d connections in %.2fs; %.2f connections/user sec, bytes read %ld\n", nConn, totalTime, ((double) nConn / totalTime), bytes_read); - printf("%d connections in %lld real seconds, %ld bytes read per connection\n", + printf("%d connections in %.0f real seconds, %ld bytes read per connection\n", nConn, - (long long)(time(NULL) - finishtime + s_time_config.maxtime), + elapsed, bytes_read / nConn); ret = 0;