X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b3b356352e87ae00a20f737c48e19b0c8413455a..8c3cc1fe798afef50589651b016317b4d5abb74a:/examples/msg/suspend/suspend.c diff --git a/examples/msg/suspend/suspend.c b/examples/msg/suspend/suspend.c index c26e38fb00..13db39fea6 100644 --- a/examples/msg/suspend/suspend.c +++ b/examples/msg/suspend/suspend.c @@ -4,23 +4,18 @@ /* 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 "simgrid/msg.h" /* Yeah! If you want to use msg, you need to include simgrid/msg.h */ -#include "xbt/sysdep.h" /* calloc */ +#include "simgrid/msg.h" -/* 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"); #define SLEEP(duration) \ if (MSG_process_sleep(duration) != MSG_OK) \ - xbt_die("What's going on??? I failed to sleep!"); \ - else \ - (void)0 + xbt_die("What's going on??? I failed to sleep!"); /** @addtogroup MSG_examples * - * - suspend/suspend.c: Demonstrates how to suspend and resume processes using @ref MSG_process_suspend and @ref MSG_process_resume. + * - suspend/suspend.c: Demonstrates how to suspend and resume processes using + * @ref MSG_process_suspend and @ref MSG_process_resume. */ /** Lazy guy function. This process suspends itself asap. */ @@ -42,8 +37,7 @@ static int lazy_guy(int argc, char *argv[]) return 0; } /* end_of_lazy_guy */ -/** Dream master function. This process creates a lazy_guy process and - resumes it 10 seconds later. */ +/** Dream master function. This process creates a lazy_guy process and resumes it 10 seconds later. */ static int dream_master(int argc, char *argv[]) { msg_process_t lazy = NULL; @@ -73,44 +67,20 @@ static int dream_master(int argc, char *argv[]) XBT_INFO("OK, goodbye now."); return 0; -} /* end_of_dram_master */ +} /* end_of_dream_master */ -/** Test function */ -static 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; - { /* Simulation setting */ - MSG_create_environment(platform_file); - } - { /* Application deployment */ - MSG_function_register("dream_master", dream_master); - MSG_launch_application(application_file); - } + MSG_init(&argc, argv); + xbt_assert(argc > 1, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]); + + MSG_create_environment(argv[1]); + MSG_function_register("dream_master", dream_master); + MSG_process_create("dream_master", dream_master, NULL, xbt_dynar_getfirst_as(MSG_hosts_as_dynar(), msg_host_t)); res = MSG_main(); XBT_INFO("Simulation time %g", MSG_get_clock()); - return res; -} /* end_of_test_all */ - - -/** Main function */ -int main(int argc, char *argv[]) -{ - msg_error_t res = MSG_OK; - - 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_suspend.xml\n", - argv[0]); - exit(1); - } - test_all(argv[1], argv[2]); - - if (res == MSG_OK) - return 0; - else - return 1; -} /* end_of_main */ + return res != MSG_OK; +}