aboutsummaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-02-18 21:44:35 +0000
committerChristian Grothoff <christian@grothoff.org>2011-02-18 21:44:35 +0000
commit6a3da17e6eb070d0a6d6730e718f689aa646defb (patch)
tree9650633efae5b683e33032748e4535fe7528f7dd /src/core
parentc01cc9ae1848cfeab702cbb5bbf21baf57db4837 (diff)
downloadgnunet-6a3da17e6eb070d0a6d6730e718f689aa646defb.tar.gz
gnunet-6a3da17e6eb070d0a6d6730e718f689aa646defb.zip
gaugering
Diffstat (limited to 'src/core')
-rw-r--r--src/core/test_core_api_reliability.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/test_core_api_reliability.c b/src/core/test_core_api_reliability.c
index 7eab92b12..c1315aec6 100644
--- a/src/core/test_core_api_reliability.c
+++ b/src/core/test_core_api_reliability.c
@@ -34,6 +34,7 @@
34#include "gnunet_program_lib.h" 34#include "gnunet_program_lib.h"
35#include "gnunet_scheduler_lib.h" 35#include "gnunet_scheduler_lib.h"
36#include "gnunet_transport_service.h" 36#include "gnunet_transport_service.h"
37#include <gauger.h>
37 38
38#define VERBOSE GNUNET_NO 39#define VERBOSE GNUNET_NO
39 40
@@ -131,6 +132,8 @@ terminate_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
131 fprintf (stderr, 132 fprintf (stderr,
132 "\nThroughput was %llu kb/s\n", 133 "\nThroughput was %llu kb/s\n",
133 total_bytes * 1000 / 1024 / delta); 134 total_bytes * 1000 / 1024 / delta);
135 GAUGER ("Core throughput_kb/s",
136 total_bytes * 1000 / 1024 / delta);
134 ok = 0; 137 ok = 0;
135} 138}
136 139