]> AND Public Git Repository - simgrid.git/blobdiff - examples/msg/tracing/procmig.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove unused variables and add missing prototypes.
[simgrid.git] / examples / msg / tracing / procmig.c
index bdd30ca8d95a4688ff3a694778165522446535d4..3efb25119a8051ce3b0c637745350105bc4c88aa 100644 (file)
@@ -22,11 +22,11 @@ static int emigrant(int argc, char *argv[])
   while (1){ // I am an eternal emigrant
     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
-    XBT_INFO("Migrating to %s", destination);
     MSG_process_migrate(MSG_process_self(), MSG_get_host_by_name(destination));
     MSG_process_sleep(2); // I am tired, have to sleep for 2 seconds
-    MSG_task_destroy (task);
+    free (destination);
     task = NULL;
   }
   return 0;
@@ -67,8 +67,6 @@ static int master(int argc, char *argv[])
 /** Main function */
 int main(int argc, char *argv[])
 {
-  MSG_error_t res = MSG_OK;
-
   /* Argument checking */
   MSG_global_init(&argc, argv);
   if (argc < 3) {