X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/19b3962253112b19308537bc2400de141c119d99..90680837ebef1bd470bd846a684b28a7aff1ab90:/teshsuite/simdag/availability/availability.c diff --git a/teshsuite/simdag/availability/availability.c b/teshsuite/simdag/availability/availability.c index ed79a9327a..13ec72f29f 100644 --- a/teshsuite/simdag/availability/availability.c +++ b/teshsuite/simdag/availability/availability.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2015. The SimGrid Team. +/* Copyright (c) 2013-2021. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -12,17 +12,17 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(test,"Logging for the current example"); static int name_compare_hosts(const void *n1, const void *n2) { - return strcmp(sg_host_get_name(*(sg_host_t *) n1), sg_host_get_name(*(sg_host_t *) n2)); + return strcmp(sg_host_get_name(*(const sg_host_t*)n1), sg_host_get_name(*(const sg_host_t*)n2)); } -static void scheduleDAX(xbt_dynar_t dax) +static void scheduleDAX(const_xbt_dynar_t dax) { unsigned int cursor; SD_task_t task; sg_host_t *hosts = sg_host_list(); - int totalHosts = sg_host_count(); - qsort((void *) hosts, totalHosts, sizeof(sg_host_t), name_compare_hosts); + size_t totalHosts = sg_host_count(); + qsort(hosts, totalHosts, sizeof(sg_host_t), name_compare_hosts); xbt_dynar_foreach(dax, cursor, task) { if (SD_task_get_kind(task) == SD_TASK_COMP_SEQ) { @@ -31,7 +31,7 @@ static void scheduleDAX(xbt_dynar_t dax) SD_task_schedulel(task, 1, hosts[0]); } else { XBT_INFO("Scheduling %s to node: %s", SD_task_get_name(task), sg_host_get_name(hosts[(cursor) % totalHosts])); - SD_task_schedulel(task, 1, hosts[(cursor) % totalHosts]); + SD_task_schedulel(task, 1, hosts[cursor % totalHosts]); } } } @@ -60,6 +60,5 @@ int main(int argc, char *argv[]) SD_task_destroy(task); } xbt_dynar_free(&dax); - SD_exit(); return 0; }