X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8d1e4e8f43226a5a63cb43aa79b1f6a4411c66b0..f9bb80daccf52fba2e729885ff8cf57f76d4ab1d:/examples/msg/suspend/suspend.c diff --git a/examples/msg/suspend/suspend.c b/examples/msg/suspend/suspend.c index 8bcba5564b..0f0ca9cdd6 100644 --- a/examples/msg/suspend/suspend.c +++ b/examples/msg/suspend/suspend.c @@ -5,12 +5,13 @@ /* 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 "msg/msg.h" /* Yeah! If you want to use msg, you need to include msg/msg.h */ -#include "xbt/sysdep.h" /* calloc */ +#include "msg/msg.h" /* Yeah! If you want to use msg, you need to include msg/msg.h */ +#include "xbt/sysdep.h" /* calloc */ /* Create a log channel to have nice outputs. */ #include "xbt/log.h" -XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,"Messages specific for this msg example"); +XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, + "Messages specific for this msg example"); typedef enum { PORT_22 = 0, @@ -26,7 +27,7 @@ static int lazy_guy(int argc, char *argv[]) INFO0("Uuuh ? Did somebody call me ?"); INFO0("Mmmh, goodbye now."); return 0; -} /* end_of_lazy_guy */ +} /* end_of_lazy_guy */ /** Dream master function. This process creates a lazy_guy process and resumes it 10 seconds later. */ @@ -42,27 +43,28 @@ static int dream_master(int argc, char *argv[]) MSG_process_resume(lazy); INFO0("OK, goodbye now."); return 0; -} /* end_of_dram_master */ +} /* end_of_dram_master */ /** Test function */ -static MSG_error_t test_all(const char *platform_file,const char *application_file) +static MSG_error_t test_all(const char *platform_file, + const char *application_file) { MSG_error_t res = MSG_OK; - { /* Simulation setting */ + { /* Simulation setting */ MSG_set_channel_number(MAX_CHANNEL); MSG_paje_output("msg_test.trace"); MSG_create_environment(platform_file); } - { /* Application deployment */ + { /* Application deployment */ MSG_function_register("dream_master", dream_master); MSG_launch_application(application_file); } res = MSG_main(); - - INFO1("Simulation time %g",MSG_get_clock()); + + INFO1("Simulation time %g", MSG_get_clock()); return res; -} /* end_of_test_all */ +} /* end_of_test_all */ /** Main function */ @@ -70,17 +72,18 @@ int main(int argc, char *argv[]) { MSG_error_t res = MSG_OK; - MSG_global_init(&argc,argv); + MSG_global_init(&argc, argv); if (argc < 3) { - CRITICAL1 ("Usage: %s platform_file deployment_file\n",argv[0]); - CRITICAL1 ("example: %s msg_platform.xml msg_deployment_suspend.xml\n",argv[0]); - exit(1); + CRITICAL1("Usage: %s platform_file deployment_file\n", argv[0]); + CRITICAL1("example: %s msg_platform.xml msg_deployment_suspend.xml\n", + argv[0]); + exit(1); } - test_all(argv[1],argv[2]); + test_all(argv[1], argv[2]); res = MSG_clean(); - if(res==MSG_OK) + if (res == MSG_OK) return 0; else - return 1; -} /* end_of_main */ + return 1; +} /* end_of_main */