X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e488b6ea7ff323238c3211c1f17f610196806cc9..611d822b02f836d7abe031cced6adc4281ef4356:/teshsuite/simdag/comm-p2p-latency-bound/comm-p2p-latency-bound.c diff --git a/teshsuite/simdag/comm-p2p-latency-bound/comm-p2p-latency-bound.c b/teshsuite/simdag/comm-p2p-latency-bound/comm-p2p-latency-bound.c index 357c4cc84b..88c4e5d297 100644 --- a/teshsuite/simdag/comm-p2p-latency-bound/comm-p2p-latency-bound.c +++ b/teshsuite/simdag/comm-p2p-latency-bound/comm-p2p-latency-bound.c @@ -1,6 +1,6 @@ /* Latency tests */ -/* Copyright (c) 2007, 2009-2011, 2013-2015. The SimGrid Team. +/* Copyright (c) 2007-2018. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -12,7 +12,7 @@ #define TASK_NUM 3 /** - * 3 tasks send 1 byte in parallel + * 3 tasks send 1 byte in parallel * 3 flows exceed bandwidth * should be 10001.5 * because the max tcp win size is 20000 @@ -29,13 +29,16 @@ int main(int argc, char **argv) SD_create_environment(argv[1]); SD_task_t root = SD_task_create("Root", NULL, 1.0); - SD_task_schedule(root, 1, sg_host_list(), no_cost, no_cost, -1.0); + + sg_host_t *hosts = sg_host_list(); + SD_task_schedule(root, 1, hosts, no_cost, no_cost, -1.0); for (int i = 0; i < TASK_NUM; i++) { task[i] = SD_task_create("Comm", NULL, 1.0); - SD_task_schedule(task[i], 2, sg_host_list(), no_cost, communication_amount, -1.0); - SD_task_dependency_add(NULL, NULL, root, task[i]); + SD_task_schedule(task[i], 2, hosts, no_cost, communication_amount, -1.0); + SD_task_dependency_add(root, task[i]); } + xbt_free(hosts); SD_simulate(-1.0); @@ -47,6 +50,5 @@ int main(int argc, char **argv) } SD_task_destroy(root); - SD_exit(); return 0; }