Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add a README and examples/platforms.
[simgrid.git] / examples / msg / mc / bugged1.c
index 38f90519e9524a9e8a980ecf13eca7c4b8e45289..16425d7c63f27aa732694ccee69af4d14e553025 100644 (file)
@@ -26,7 +26,7 @@ int server(int argc, char *argv[])
   }
   MC_assert(atoi(MSG_task_get_name(task)) == 3);
 
-  INFO0("OK");
+  XBT_INFO("OK");
   return 0;
 }
 
@@ -39,7 +39,7 @@ int client(int argc, char *argv[])
 
   MSG_task_send(task, "mymailbox");
 
-  INFO0("Sent!");
+  XBT_INFO("Sent!");
   return 0;
 }