X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6a42d0b4d34e2b9777922430ef85646dabbefa20..b5b953be4c43bad172a39f8917200ed84b534ec5:/examples/msg/chainsend/chainsend.c diff --git a/examples/msg/chainsend/chainsend.c b/examples/msg/chainsend/chainsend.c index 51ca4d7e1f..e7316ac581 100644 --- a/examples/msg/chainsend/chainsend.c +++ b/examples/msg/chainsend/chainsend.c @@ -4,16 +4,7 @@ /* 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 - -#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. */ -#include "xbt/log.h" -#include "xbt/asserts.h" - +#include "simgrid/msg.h" #include "iterator.h" #include "messages.h" #include "broadcaster.h" @@ -21,33 +12,18 @@ /** @addtogroup MSG_examples * - * - chainsend/chainsend.c: Chainsend implementation. + * - chainsend: MSG implementation of a file broadcasting system, similar to Kastafior (from Kadeploy).. */ +XBT_LOG_NEW_DEFAULT_CATEGORY(msg_chainsend, "Messages specific for chainsend"); -XBT_LOG_NEW_DEFAULT_CATEGORY(msg_chainsend, - "Messages specific for chainsend"); - -/* - Data structures - */ - -/* Initialization stuff */ -msg_error_t test_all(const char *platform_file, - const char *application_file); - - -/** Test function */ -msg_error_t test_all(const char *platform_file, - const char *application_file) +int main(int argc, char *argv[]) { - msg_error_t res = MSG_OK; - XBT_DEBUG("test_all"); + MSG_init(&argc, argv); - /* Simulation setting */ - MSG_create_environment(platform_file); + MSG_create_environment(argv[1]); /* Trace categories */ TRACE_category_with_color("host0", "0 0 1"); @@ -64,33 +40,11 @@ msg_error_t test_all(const char *platform_file, MSG_function_register("broadcaster", broadcaster); MSG_function_register("peer", peer); - MSG_launch_application(application_file); + MSG_launch_application(argv[2]); res = MSG_main(); - return res; -} /* end_of_test_all */ - - -/** Main function */ -int main(int argc, char *argv[]) -{ - msg_error_t res = MSG_OK; - -#ifdef _MSC_VER - unsigned int prev_exponent_format = - _set_output_format(_TWO_DIGIT_EXPONENT); -#endif - - MSG_init(&argc, argv); - - res = test_all(argv[1], argv[2]); - XBT_INFO("Total simulation time: %e", MSG_get_clock()); -#ifdef _MSC_VER - _set_output_format(prev_exponent_format); -#endif - return res != MSG_OK; }