Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into MC_LTL
[simgrid.git] / examples / msg / tracing / procmig.c
index 1878229..846f59f 100644 (file)
@@ -1,5 +1,3 @@
-/*     $Id$     */
-
 /* Copyright (c) 2009 The SimGrid team. All rights reserved.                */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -26,9 +24,8 @@ static int emigrant(int argc, char *argv[])
     destination = (char*)MSG_task_get_data (task);
     if (!destination) break; //there is no destination, die
     XBT_INFO("Migrating to %s", destination);
-    MSG_process_change_host(MSG_get_host_by_name(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
-    xbt_free (destination);
     MSG_task_destroy (task);
     task = NULL;
   }
@@ -41,7 +38,7 @@ static int master(int argc, char *argv[])
 
   // I am the master of emigrant process,
   // I tell it where it must emigrate to.
-  xbt_dynar_t destinations = xbt_dynar_new (sizeof(char*), xbt_free);
+  xbt_dynar_t destinations = xbt_dynar_new (sizeof(char*), &xbt_free_ref);
   xbt_dynar_push_as (destinations, char*, xbt_strdup ("Tremblay"));
   xbt_dynar_push_as (destinations, char*, xbt_strdup ("Jupiter"));
   xbt_dynar_push_as (destinations, char*, xbt_strdup ("Fafard"));
@@ -63,6 +60,7 @@ static int master(int argc, char *argv[])
     MSG_task_send (task, "master_mailbox");
     task = NULL;
   }
+  xbt_dynar_free (&destinations);
   return 0;
 }