Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not promote bad practices: use "accessor" to get task name
[simgrid.git] / teshsuite / msg / app-token-ring / app-token-ring.c
index 013e9c3..3c585b2 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2008-2018. 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. */
 
 /* 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. */
@@ -22,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);
     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()));
     MSG_task_send(task, mailbox);
     task    = NULL;
     int res = MSG_task_receive(&task, MSG_process_get_name(MSG_process_self()));
@@ -42,7 +42,7 @@ static int relay_runner(int argc, char* argv[])
       snprintf(mailbox, 255, "0");
     else
       snprintf(mailbox, 255, "%d", rank + 1);
       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;
     MSG_task_send(task, mailbox);
   }
   return 0;