Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
smells -= a lot
[simgrid.git] / teshsuite / simdag / comm-mxn-scatter / comm-mxn-scatter.c
index e26c44a..e55fadf 100644 (file)
@@ -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);