X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ab8d6bf77b9aa74785b486fd5704e7fc63f25d66..56cb1c2b4dd10665f4652cdc47bc7324b511fe91:/examples/msg/trace-process-migration/trace-process-migration.c diff --git a/examples/msg/trace-process-migration/trace-process-migration.c b/examples/msg/trace-process-migration/trace-process-migration.c index 13f3955550..bf27730181 100644 --- a/examples/msg/trace-process-migration/trace-process-migration.c +++ b/examples/msg/trace-process-migration/trace-process-migration.c @@ -1,22 +1,11 @@ -/* Copyright (c) 2010-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2010-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. */ -/** @addtogroup MSG_examples - * - * - tracing/procmig.c This program shows a process migration. Tracing this program with the options below - * enables a gantt-chart visualization of where the process has been during its execution. Migrations are represented by - * arrows from the origin to the destination host. You might want to run this program with the following parameters: - * --cfg=tracing:yes - * --cfg=tracing/msg/process:yes - * (See \ref tracing_tracing_options for details) - */ - #include "simgrid/msg.h" -/** The guy we will move from host to host. It move alone and then is moved by policeman back */ +/* The guy we will move from host to host. It move alone and then is moved by policeman back */ static int emigrant(int argc, char *argv[]) { msg_task_t task = NULL; @@ -28,7 +17,8 @@ static int emigrant(int argc, char *argv[]) MSG_task_receive(&(task), "master_mailbox"); destination = (char*)MSG_task_get_data (task); MSG_task_destroy (task); - if (!destination) break; //there is no destination, die + if (destination == NULL) + break; //there is no destination, die MSG_process_migrate(MSG_process_self(), MSG_host_by_name(destination)); MSG_process_sleep(2); // I am tired, have to sleep for 2 seconds free (destination); @@ -58,7 +48,7 @@ static int policeman(int argc, char *argv[]) unsigned int i; xbt_dynar_foreach(destinations, i, destination){ task = MSG_task_create("task", 0, 0, NULL); - if (destination){ + if (destination != NULL){ MSG_task_set_data(task, xbt_strdup (destination)); } MSG_task_set_category(task, "migration_order");