aboutsummaryrefslogtreecommitdiff
path: root/src/stream/perf_stream_api.c
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2012-09-12 10:37:02 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2012-09-12 10:37:02 +0000
commit7be14112c9baad0b15f2b810d9360914da1b481e (patch)
tree1f55e5213ae03044e713601bc2c3694941899366 /src/stream/perf_stream_api.c
parentec2206e33164fe6a8067bd634dbb647faec432c1 (diff)
downloadgnunet-7be14112c9baad0b15f2b810d9360914da1b481e.tar.gz
gnunet-7be14112c9baad0b15f2b810d9360914da1b481e.zip
fixes
Diffstat (limited to 'src/stream/perf_stream_api.c')
-rw-r--r--src/stream/perf_stream_api.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stream/perf_stream_api.c b/src/stream/perf_stream_api.c
index 2aec2be57..696177cd0 100644
--- a/src/stream/perf_stream_api.c
+++ b/src/stream/perf_stream_api.c
@@ -185,7 +185,7 @@ static uint32_t data[DATA_SIZE / 4];
185 * Payload sizes to test each major test with 185 * Payload sizes to test each major test with
186 */ 186 */
187static uint16_t payload_size[] = 187static uint16_t payload_size[] =
188{ 20, 500, 2000, 7000, 13000, 25000, 56000, 60000 }; 188{ 20, 500, 2000, 7000, 13000, 25000, 50000, 60000 };
189 189
190/** 190/**
191 * Handle for the progress meter 191 * Handle for the progress meter
@@ -335,11 +335,11 @@ do_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
335static void 335static void
336do_abort (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) 336do_abort (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
337{ 337{
338 abort_task = GNUNET_SCHEDULER_NO_TASK;
338 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: ABORT\n"); 339 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: ABORT\n");
339 if (GNUNET_SCHEDULER_NO_TASK != read_task) 340 if (GNUNET_SCHEDULER_NO_TASK != read_task)
340 GNUNET_SCHEDULER_cancel (read_task); 341 GNUNET_SCHEDULER_cancel (read_task);
341 result = GNUNET_SYSERR; 342 result = GNUNET_SYSERR;
342 abort_task = GNUNET_SCHEDULER_NO_TASK;
343 do_shutdown (cls, tc); 343 do_shutdown (cls, tc);
344} 344}
345 345
@@ -550,7 +550,7 @@ run (void *cls,
550 peer_data[2].self = self; 550 peer_data[2].self = self;
551 abort_task = 551 abort_task =
552 GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply 552 GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
553 (GNUNET_TIME_UNIT_SECONDS, 60), &do_abort, 553 (GNUNET_TIME_UNIT_SECONDS, 300), &do_abort,
554 NULL); 554 NULL);
555} 555}
556 556