X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bd7d5780ee8b73efd58c83f5d6f864d0a941b3ed..c25a26b26202c93dc2bfa44d214b8f804b78b8b3:/teshsuite/msg/app-pingpong/app-pingpong.c diff --git a/teshsuite/msg/app-pingpong/app-pingpong.c b/teshsuite/msg/app-pingpong/app-pingpong.c index 1c9744762b..265c15f804 100644 --- a/teshsuite/msg/app-pingpong/app-pingpong.c +++ b/teshsuite/msg/app-pingpong/app-pingpong.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-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. */ @@ -29,7 +29,7 @@ static int pinger(int argc, char* argv[]) double sender_time = *((double*)(pong_task->data)); double communication_time = MSG_get_clock() - sender_time; - XBT_INFO("Task received : %s", pong_task->name); + XBT_INFO("Task received : %s", MSG_task_get_name(pong_task)); xbt_free(pong_task->data); MSG_task_destroy(pong_task); XBT_INFO("Pong time (bandwidth bound): %.3f", communication_time); @@ -50,7 +50,7 @@ static int ponger(int argc, char* argv[]) double sender_time = *((double*)(ping_task->data)); double communication_time = MSG_get_clock() - sender_time; - XBT_INFO("Task received : %s", ping_task->name); + XBT_INFO("Task received : %s", MSG_task_get_name(ping_task)); xbt_free(ping_task->data); MSG_task_destroy(ping_task); XBT_INFO(" Ping time (latency bound) %f", communication_time);