X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bbf8aab8704722fb68397b9b1c15251e79efac6a..73599d00d9eb10e31b9b9b8b1992e6c3d39ab8bc:/examples/msg/process-kill/process-kill.c diff --git a/examples/msg/process-kill/process-kill.c b/examples/msg/process-kill/process-kill.c index e345301c88..fe02ef8091 100644 --- a/examples/msg/process-kill/process-kill.c +++ b/examples/msg/process-kill/process-kill.c @@ -1,5 +1,4 @@ -/* Copyright (c) 2007, 2009-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2007, 2009-2016. The SimGrid Team. All rights reserved. */ /* 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. */ @@ -7,53 +6,47 @@ #include "simgrid/msg.h" XBT_LOG_NEW_DEFAULT_CATEGORY(msg_process_kill, "Messages specific for this msg example"); -/** @addtogroup MSG_examples - * - * - Killing: process-kill/process-kill.c. Processes can also be killed by another if needed thanks to - * the @ref MSG_process_kill function. - */ static int victim(int argc, char *argv[]) { XBT_INFO("Hello!"); XBT_INFO("Suspending myself"); - MSG_process_suspend(MSG_process_self()); /** - First suspend itself */ - XBT_INFO("OK, OK. Let's work"); /** - Then is resumed and start to execute a task */ + MSG_process_suspend(MSG_process_self()); /* - First suspend itself */ + XBT_INFO("OK, OK. Let's work"); /* - Then is resumed and start to execute a task */ MSG_task_execute(MSG_task_create("work", 1e9, 0, NULL)); - XBT_INFO("Bye!"); /** - But will never reach the end of it */ + XBT_INFO("Bye!"); /* - But will never reach the end of it */ return 0; } static int killer(int argc, char *argv[]) { - XBT_INFO("Hello!"); /** - First start a @ref victim process */ + XBT_INFO("Hello!"); /* - First start a victim process */ msg_process_t poor_victim = MSG_process_create("victim", victim, NULL, MSG_host_by_name("Fafard")); MSG_process_sleep(10.0); - XBT_INFO("Resume process"); /** - Resume it from its suspended state */ + XBT_INFO("Resume process"); /* - Resume it from its suspended state */ MSG_process_resume(poor_victim); - XBT_INFO("Kill process"); /** - and then kill it */ + XBT_INFO("Kill process"); /* - and then kill it */ MSG_process_kill(poor_victim); - XBT_INFO("OK, goodbye now."); + XBT_INFO("OK, goodbye now. I commit a suicide."); + MSG_process_kill(MSG_process_self()); + + XBT_INFO("This line will never get displayed: I'm already dead since the previous line."); return 0; } int main(int argc, char *argv[]) { - msg_error_t res = MSG_OK; - MSG_init(&argc, argv); xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s msg_platform.xml\n", argv[0], argv[0]); - MSG_create_environment(argv[1]); /** - Load the platform description */ - /** - Create and deploy @ref killer process */ - MSG_function_register("killer", killer); - MSG_function_register("victim", victim); + MSG_create_environment(argv[1]); /* - Load the platform description */ + /* - Create and deploy killer process, that will create the victim process */ MSG_process_create("killer", killer, NULL, MSG_host_by_name("Tremblay")); - res = MSG_main(); /** - Run the simulation */ + msg_error_t res = MSG_main(); /* - Run the simulation */ XBT_INFO("Simulation time %g", MSG_get_clock()); return res != MSG_OK;