From f4c2815e7f939daf638b8cd388a212c9278f341c Mon Sep 17 00:00:00 2001 From: "sgunderson@bigfoot.com" <> Date: Wed, 31 Jan 2007 23:47:43 +0100 Subject: [PATCH] Print out the statistics, and fix a stats bug. --- jam.c | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/jam.c b/jam.c index 7e46c21..1b6aaed 100644 --- a/jam.c +++ b/jam.c @@ -217,11 +217,13 @@ void *receiver_worker(void *arg) if (ret == 0) break; + bytes_received += ret; + // update the central counter after every 1MB (8ms // at gigabit speeds, should be enough) of received data if (bytes_received > 1048576) { pthread_mutex_lock(&receive_mutex); - total_bytes_sent += bytes_received; + total_bytes_received += bytes_received; pthread_mutex_unlock(&receive_mutex); bytes_received = 0; @@ -372,7 +374,22 @@ int main(int argc, char **argv) } } - sleep(3600); + // Just stay around collecting statistics until we're done. + for ( ;; ) { + unsigned long long sent, received; + + pthread_mutex_lock(&send_mutex); + sent = total_bytes_sent; + pthread_mutex_unlock(&send_mutex); + + pthread_mutex_lock(&receive_mutex); + received = total_bytes_received; + pthread_mutex_unlock(&receive_mutex); + + printf("%llu %llu\n", sent, received); + + sleep(1); + } exit(0); } -- 2.39.2