X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ba15f0e8e5fe9918bad627ec253f3fcae8921432..1e09e1421647408f991d54848b90d9404e9154f6:/teshsuite/simdag/comm-mxn-scatter/comm-mxn-scatter.c diff --git a/teshsuite/simdag/comm-mxn-scatter/comm-mxn-scatter.c b/teshsuite/simdag/comm-mxn-scatter/comm-mxn-scatter.c index e26c44ab52..5b77c2c486 100644 --- a/teshsuite/simdag/comm-mxn-scatter/comm-mxn-scatter.c +++ b/teshsuite/simdag/comm-mxn-scatter/comm-mxn-scatter.c @@ -12,7 +12,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(comm_mxn_scatter, sd, "SimDag test scatter"); /* * intra communication test 1 * scatter - * + * * start: 1 2 3 (each having 1/3 of the bandwidth) * after 3 sec: 0 1 2 (having 1/2 of the bandwidth) * after another 2 sec: 0 0 1 (having all the bandwidth) @@ -32,7 +32,9 @@ int main(int argc, char **argv) SD_task_t task = SD_task_create("Scatter task", NULL, 1.0); - SD_task_schedule(task, 4, sg_host_list(), SD_SCHED_NO_COST, communication_amount, -1.0); + sg_host_t *hosts = sg_host_list(); + SD_task_schedule(task, 4, hosts, SD_SCHED_NO_COST, communication_amount, -1.0); + xbt_free(hosts); SD_simulate(-1.0); @@ -40,6 +42,5 @@ int main(int argc, char **argv) SD_task_destroy(task); - SD_exit(); return 0; }