X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0c13871d73e933c1847faf8debea7b7745a3ff44..bd08f5fb99eea01833b2b83730a0732443da8d38:/examples/msg/chainsend/chainsend.c diff --git a/examples/msg/chainsend/chainsend.c b/examples/msg/chainsend/chainsend.c index ae6f7d37cd..51ca4d7e1f 100644 --- a/examples/msg/chainsend/chainsend.c +++ b/examples/msg/chainsend/chainsend.c @@ -1,5 +1,4 @@ -/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team. - * Copyright (c) 2012. Maximiliano Geier. +/* Copyright (c) 2007-2010, 2012-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -8,7 +7,7 @@ #include #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 */ /* Create a log channel to have nice outputs. */ @@ -45,8 +44,6 @@ msg_error_t test_all(const char *platform_file, msg_error_t res = MSG_OK; - - XBT_DEBUG("test_all"); /* Simulation setting */ @@ -87,34 +84,13 @@ int main(int argc, char *argv[]) MSG_init(&argc, argv); - /*if (argc <= 3) { - XBT_CRITICAL("Usage: %s platform_file deployment_file \n", - argv[0]); - XBT_CRITICAL - ("example: %s msg_platform.xml msg_deployment.xml KCCFLN05_Vegas\n", - argv[0]); - exit(1); - }*/ - - /* Options for the workstation/model: - - KCCFLN05 => for maxmin - KCCFLN05_proportional => for proportional (Vegas) - KCCFLN05_Vegas => for TCP Vegas - KCCFLN05_Reno => for TCP Reno - */ - //MSG_config("workstation/model", argv[3]); - res = test_all(argv[1], argv[2]); - XBT_INFO("Total simulation time: %le", MSG_get_clock()); + XBT_INFO("Total simulation time: %e", MSG_get_clock()); #ifdef _MSC_VER _set_output_format(prev_exponent_format); #endif - if (res == MSG_OK) - return 0; - else - return 1; -} /* end_of_main */ + return res != MSG_OK; +}