aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/test_testbed_api_operations.c
diff options
context:
space:
mode:
authorSree Harsha Totakura <totakura@in.tum.de>2013-08-19 14:13:19 +0000
committerSree Harsha Totakura <totakura@in.tum.de>2013-08-19 14:13:19 +0000
commit9dd0824b40e7afeaf948a564d544b384db12cadf (patch)
tree4d98c8d27669e8eca6259a9601e32fddfa67e39c /src/testbed/test_testbed_api_operations.c
parentd4051630bbc5f521142f302baad60212b75f8b7f (diff)
downloadgnunet-9dd0824b40e7afeaf948a564d544b384db12cadf.tar.gz
gnunet-9dd0824b40e7afeaf948a564d544b384db12cadf.zip
fix 2893: Move adaptive parallelisation mechanism to operation queues
Diffstat (limited to 'src/testbed/test_testbed_api_operations.c')
-rw-r--r--src/testbed/test_testbed_api_operations.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testbed/test_testbed_api_operations.c b/src/testbed/test_testbed_api_operations.c
index 31b3add0a..feca147b7 100644
--- a/src/testbed/test_testbed_api_operations.c
+++ b/src/testbed/test_testbed_api_operations.c
@@ -490,9 +490,9 @@ static void
490run (void *cls, char *const *args, const char *cfgfile, 490run (void *cls, char *const *args, const char *cfgfile,
491 const struct GNUNET_CONFIGURATION_Handle *config) 491 const struct GNUNET_CONFIGURATION_Handle *config)
492{ 492{
493 q1 = GNUNET_TESTBED_operation_queue_create_ (1); 493 q1 = GNUNET_TESTBED_operation_queue_create_ (OPERATION_QUEUE_TYPE_FIXED, 1);
494 GNUNET_assert (NULL != q1); 494 GNUNET_assert (NULL != q1);
495 q2 = GNUNET_TESTBED_operation_queue_create_ (2); 495 q2 = GNUNET_TESTBED_operation_queue_create_ (OPERATION_QUEUE_TYPE_FIXED, 2);
496 GNUNET_assert (NULL != q2); 496 GNUNET_assert (NULL != q2);
497 op1 = GNUNET_TESTBED_operation_create_ (&op1, start_cb, release_cb); 497 op1 = GNUNET_TESTBED_operation_create_ (&op1, start_cb, release_cb);
498 GNUNET_assert (NULL != op1); 498 GNUNET_assert (NULL != op1);