From d0fa5441a64b2ce2be78b3a72e726fa6b0c416cd Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 4 Mar 2024 17:14:05 -0500 Subject: [PATCH] Only calculate ops/sec if time>0 --- citadel/utils/loadtest.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/citadel/utils/loadtest.c b/citadel/utils/loadtest.c index 409ebc04e..0f2285d4b 100644 --- a/citadel/utils/loadtest.c +++ b/citadel/utils/loadtest.c @@ -313,8 +313,7 @@ void *loadtest(void *pointer_to_thread_id) { perform_random_thing(serv_sock); printf("\033[%d;%dH\033[32m%8ld\033[0m", row, col, ++ops); ++ops_completed; // this is declared "volatile" so we don't need to lock it - if (thread_id == 0) { - // FIXME the following line produces a divide by zero error on fast machines --- ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓ + if ( (thread_id == 0) && (time(NULL) > time_started) ) { printf("\033[2;55H\033[44m\033[33m\033[1m%ld ops/sec \033[0m", (ops_completed / (time(NULL) - time_started))); } fflush(stdout); -- 2.30.2