X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/df12bbc75c274351f3b3a628740e0b3270f08e18..b3b356352e87ae00a20f737c48e19b0c8413455a:/examples/msg/parallel_task/test_ptask.c?ds=sidebyside diff --git a/examples/msg/parallel_task/test_ptask.c b/examples/msg/parallel_task/test_ptask.c index 05d6c5eb76..382555e8e6 100644 --- a/examples/msg/parallel_task/test_ptask.c +++ b/examples/msg/parallel_task/test_ptask.c @@ -1,12 +1,11 @@ -/* Copyright (c) 2008, 2009, 2010. The SimGrid Team. +/* Copyright (c) 2008-2015. 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 -#include "msg/msg.h" /* Yeah! If you want to use msg, you - need to include msg/msg.h */ +#include "simgrid/msg.h" /* Yeah! If you want to use msg, you need to include simgrid/msg.h */ #include "xbt/sysdep.h" /* calloc, printf */ /* Create a log channel to have nice outputs. */ @@ -17,7 +16,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, int execute(int argc, char *argv[]); int redistribute(int argc, char *argv[]); -MSG_error_t test_all(const char *platform_file, +msg_error_t test_all(const char *platform_file, const char *application_file); @@ -26,7 +25,7 @@ int execute(int argc, char *argv[]) char buffer[32]; int i, j; msg_host_t *m_host_list = NULL; - m_task_t task = NULL; + msg_task_t task = NULL; int host_list_size; double *computation_duration = NULL; double *communication_table = NULL; @@ -39,7 +38,7 @@ int execute(int argc, char *argv[]) XBT_DEBUG("host_list_size=%d", host_list_size); m_host_list = calloc(host_list_size, sizeof(msg_host_t)); for (i = 1; i <= host_list_size; i++) { - m_host_list[i - 1] = MSG_get_host_by_name(argv[i]); + m_host_list[i - 1] = MSG_host_by_name(argv[i]); xbt_assert(m_host_list[i - 1] != NULL, "Unknown host %s. Stopping Now! ", argv[i]); } @@ -83,7 +82,7 @@ int redistribute(int argc, char *argv[]) char buffer[32]; int i, j; msg_host_t *m_host_list = NULL; - m_task_t task = NULL; + msg_task_t task = NULL; int host_list_size; double *computation_duration = NULL; double *communication_table = NULL; @@ -95,7 +94,7 @@ int redistribute(int argc, char *argv[]) XBT_DEBUG("host_list_size=%d", host_list_size); m_host_list = calloc(host_list_size, sizeof(msg_host_t)); for (i = 1; i <= host_list_size; i++) { - m_host_list[i - 1] = MSG_get_host_by_name(argv[i]); + m_host_list[i - 1] = MSG_host_by_name(argv[i]); xbt_assert(m_host_list[i - 1] != NULL, "Unknown host %s. Stopping Now! ", argv[i]); } @@ -131,13 +130,13 @@ int redistribute(int argc, char *argv[]) } -MSG_error_t test_all(const char *platform_file, +msg_error_t test_all(const char *platform_file, const char *application_file) { - MSG_error_t res = MSG_OK; + msg_error_t res = MSG_OK; - MSG_config("workstation/model", "ptask_L07"); + MSG_config("host/model", "ptask_L07"); /* Simulation setting */ MSG_create_environment(platform_file); @@ -156,7 +155,7 @@ MSG_error_t test_all(const char *platform_file, int main(int argc, char *argv[]) { - MSG_error_t res = MSG_OK; + msg_error_t res = MSG_OK; MSG_init(&argc, argv); if (argc < 3) { @@ -164,7 +163,6 @@ int main(int argc, char *argv[]) exit(1); } res = test_all(argv[1], argv[2]); - MSG_clean(); if (res == MSG_OK) return 0;