X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bb123a2a34a948902f850e5ec93a771aa7209203..c25a26b26202c93dc2bfa44d214b8f804b78b8b3:/teshsuite/msg/app-token-ring/app-token-ring.c diff --git a/teshsuite/msg/app-token-ring/app-token-ring.c b/teshsuite/msg/app-token-ring/app-token-ring.c index 4316fd6e4c..3c585b2688 100644 --- a/teshsuite/msg/app-token-ring/app-token-ring.c +++ b/teshsuite/msg/app-token-ring/app-token-ring.c @@ -1,10 +1,12 @@ -/* Copyright (c) 2008-2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2008-2019. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ #include "simgrid/msg.h" +#include /* snprintf */ + XBT_LOG_NEW_DEFAULT_CATEGORY(msg_app_token_ring, "Messages specific for this msg example"); /* Main function of all processes used in this example */ @@ -20,7 +22,7 @@ static int relay_runner(int argc, char* argv[]) snprintf(mailbox, 255, "%d", rank + 1); unsigned int task_comm_size = 1000000; /* The token is 1MB long*/ msg_task_t task = MSG_task_create("Token", 0, task_comm_size, NULL); - XBT_INFO("Host \"%d\" send '%s' to Host \"%s\"", rank, task->name, mailbox); + XBT_INFO("Host \"%d\" send '%s' to Host \"%s\"", rank, MSG_task_get_name(task), mailbox); MSG_task_send(task, mailbox); task = NULL; int res = MSG_task_receive(&task, MSG_process_get_name(MSG_process_self())); @@ -40,7 +42,7 @@ static int relay_runner(int argc, char* argv[]) snprintf(mailbox, 255, "0"); else snprintf(mailbox, 255, "%d", rank + 1); - XBT_INFO("Host \"%d\" send '%s' to Host \"%s\"", rank, task->name, mailbox); + XBT_INFO("Host \"%d\" send '%s' to Host \"%s\"", rank, MSG_task_get_name(task), mailbox); MSG_task_send(task, mailbox); } return 0; @@ -53,7 +55,7 @@ int main(int argc, char* argv[]) MSG_create_environment(argv[1]); /* - Load the platform description */ xbt_dynar_t hosts = MSG_hosts_as_dynar(); - XBT_INFO("Number of hosts '%lu'", MSG_get_host_number()); + XBT_INFO("Number of hosts '%zu'", MSG_get_host_number()); unsigned int i; msg_host_t h; xbt_dynar_foreach (hosts, i,