aboutsummaryrefslogtreecommitdiff
path: root/src/testbed/testbed_api_peers.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testbed/testbed_api_peers.c')
-rw-r--r--src/testbed/testbed_api_peers.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/testbed/testbed_api_peers.c b/src/testbed/testbed_api_peers.c
index 527b0f70a..b509df40b 100644
--- a/src/testbed/testbed_api_peers.c
+++ b/src/testbed/testbed_api_peers.c
@@ -452,6 +452,7 @@ GNUNET_TESTBED_peer_create_with_id_ (uint32_t unique_id,
452 &oprelease_peer_create); 452 &oprelease_peer_create);
453 GNUNET_TESTBED_operation_queue_insert_ (controller->opq_parallel_operations, 453 GNUNET_TESTBED_operation_queue_insert_ (controller->opq_parallel_operations,
454 opc->op); 454 opc->op);
455 GNUNET_TESTBED_operation_begin_wait_ (opc->op);
455 return opc->op; 456 return opc->op;
456} 457}
457 458
@@ -532,6 +533,7 @@ GNUNET_TESTBED_peer_start (void *op_cls,
532 &oprelease_peer_start); 533 &oprelease_peer_start);
533 GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_parallel_operations, 534 GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_parallel_operations,
534 opc->op); 535 opc->op);
536 GNUNET_TESTBED_operation_begin_wait_ (opc->op);
535 return opc->op; 537 return opc->op;
536} 538}
537 539
@@ -568,6 +570,7 @@ GNUNET_TESTBED_peer_stop (struct GNUNET_TESTBED_Peer *peer,
568 &oprelease_peer_stop); 570 &oprelease_peer_stop);
569 GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_parallel_operations, 571 GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_parallel_operations,
570 opc->op); 572 opc->op);
573 GNUNET_TESTBED_operation_begin_wait_ (opc->op);
571 return opc->op; 574 return opc->op;
572} 575}
573 576
@@ -611,6 +614,7 @@ GNUNET_TESTBED_peer_get_information (struct GNUNET_TESTBED_Peer *peer,
611 &oprelease_peer_getinfo); 614 &oprelease_peer_getinfo);
612 GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_parallel_operations, 615 GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_parallel_operations,
613 opc->op); 616 opc->op);
617 GNUNET_TESTBED_operation_begin_wait_ (opc->op);
614 return opc->op; 618 return opc->op;
615} 619}
616 620
@@ -658,6 +662,7 @@ GNUNET_TESTBED_peer_destroy (struct GNUNET_TESTBED_Peer *peer)
658 &oprelease_peer_destroy); 662 &oprelease_peer_destroy);
659 GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_parallel_operations, 663 GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_parallel_operations,
660 opc->op); 664 opc->op);
665 GNUNET_TESTBED_operation_begin_wait_ (opc->op);
661 return opc->op; 666 return opc->op;
662} 667}
663 668
@@ -730,6 +735,7 @@ GNUNET_TESTBED_overlay_connect (void *op_cls,
730 /* opc->op); */ 735 /* opc->op); */
731 GNUNET_TESTBED_operation_queue_insert_ 736 GNUNET_TESTBED_operation_queue_insert_
732 (opc->c->opq_parallel_overlay_connect_operations, opc->op); 737 (opc->c->opq_parallel_overlay_connect_operations, opc->op);
738 GNUNET_TESTBED_operation_begin_wait_ (opc->op);
733 return opc->op; 739 return opc->op;
734} 740}
735 741