X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/30f1c8c5e4b8a7b6e593c7bb885ffad766ae6f5d..693f30b46244c152cd79cdf3ad35d4a79b866c9c:/examples/msg/masterslave/masterslave_kill.c diff --git a/examples/msg/masterslave/masterslave_kill.c b/examples/msg/masterslave/masterslave_kill.c index c65c06b1b4..ae4a14d7bf 100644 --- a/examples/msg/masterslave/masterslave_kill.c +++ b/examples/msg/masterslave/masterslave_kill.c @@ -16,8 +16,9 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test, static int slave(int argc, char *argv[]) { XBT_INFO("Hello!"); - XBT_INFO("Suspend process"); + XBT_INFO("Suspending myself"); MSG_process_suspend(MSG_process_self()); + XBT_INFO("OK, OK. Let's work"); MSG_task_execute(MSG_task_create("toto", 1e9, 0, NULL)); XBT_INFO("Bye!"); return 0; @@ -64,7 +65,7 @@ int main(int argc, char *argv[]) { MSG_error_t res = MSG_OK; - MSG_global_init(&argc, 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_suspend.xml\n",