X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/693f30b46244c152cd79cdf3ad35d4a79b866c9c..83149ac614195c6ce583f319de3493c31418d1fd:/examples/msg/suspend/suspend.c diff --git a/examples/msg/suspend/suspend.c b/examples/msg/suspend/suspend.c index 1c794a5041..bdc008558b 100644 --- a/examples/msg/suspend/suspend.c +++ b/examples/msg/suspend/suspend.c @@ -31,7 +31,7 @@ static int lazy_guy(int argc, char *argv[]) resumes it 10 seconds later. */ static int dream_master(int argc, char *argv[]) { - m_process_t lazy = NULL; + msg_process_t lazy = NULL; XBT_INFO("Let's create a lazy guy."); lazy = MSG_process_create("Lazy", lazy_guy, NULL, MSG_host_self()); @@ -44,10 +44,10 @@ static int dream_master(int argc, char *argv[]) } /* end_of_dram_master */ /** Test function */ -static MSG_error_t test_all(const char *platform_file, +static 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; { /* Simulation setting */ MSG_create_environment(platform_file); @@ -66,7 +66,7 @@ static MSG_error_t test_all(const char *platform_file, /** Main function */ 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) { @@ -76,7 +76,6 @@ int main(int argc, char *argv[]) exit(1); } test_all(argv[1], argv[2]); - res = MSG_clean(); if (res == MSG_OK) return 0;