X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0cfb40d124549f4dde6f00095847de0d04828adf..a1d7fb09c29089971a104069a5b0af935892e41b:/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 ed6c62251c..a716d9e29b 100644 --- a/examples/msg/process-kill/process-kill.c +++ b/examples/msg/process-kill/process-kill.c @@ -9,7 +9,7 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(msg_process_kill, "Messages specific for this msg example"); /** @addtogroup MSG_examples * - * - Process Killing: process-kill/process-kill.c. Processes can also be killed by another if needed thanks to + * - Killing: process-kill/process-kill.c. Processes can also be killed by another if needed thanks to * the @ref MSG_process_kill function. */ @@ -49,8 +49,6 @@ int main(int argc, char *argv[]) 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_process_create("killer", killer, NULL, MSG_host_by_name("Tremblay")); res = MSG_main(); /** - Run the simulation */