X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/089f75c8f83b841c91e74cdfd4e925d027ff7769..266c603229beb53e39c935be162065bb8280da48:/teshsuite/simdag/comp-only-seq/comp-only-seq.c diff --git a/teshsuite/simdag/comp-only-seq/comp-only-seq.c b/teshsuite/simdag/comp-only-seq/comp-only-seq.c index 8bc1c667cd..824e0a5e2b 100644 --- a/teshsuite/simdag/comp-only-seq/comp-only-seq.c +++ b/teshsuite/simdag/comp-only-seq/comp-only-seq.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2007, 2009-2011, 2013-2015. The SimGrid Team. +/* Copyright (c) 2007-2019. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -19,7 +19,9 @@ int main(int argc, char **argv) SD_create_environment(argv[1]); SD_task_t task = SD_task_create("seqtask", NULL, 1.0); - SD_task_schedule(task, 1, sg_host_list(), comp_cost, comm_amount, -1.0); + sg_host_t *hosts = sg_host_list(); + SD_task_schedule(task, 1, hosts, comp_cost, comm_amount, -1.0); + xbt_free(hosts); SD_simulate(-1.0); @@ -28,6 +30,5 @@ int main(int argc, char **argv) SD_task_destroy(task); - SD_exit(); return 0; }