Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
today is doomsday: platform.xml is sacrificed for the greater good
[simgrid.git] / examples / msg / synchro-semaphore / synchro-semaphore.c
index 9a464ba..bfbae35 100644 (file)
@@ -36,9 +36,7 @@ int main(int argc, char* argv[])
   MSG_init(&argc, argv);
   MSG_create_environment(argv[1]);
 
-  xbt_dynar_t hosts = MSG_hosts_as_dynar();
-  msg_host_t h = xbt_dynar_get_as(hosts,0,msg_host_t);
-  xbt_dynar_free(&hosts);
+  msg_host_t h = MSG_host_by_name("Fafard");
 
   sem = MSG_sem_init(1);
   char** aliceTimes = xbt_new(char*, 9);