Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Use C++ containers for visited_states
[simgrid.git] / teshsuite / mc / replay / random_bug.c
index f0967f9..9fbb738 100644 (file)
@@ -31,6 +31,6 @@ int main(int argc, char *argv[])
   MSG_init(&argc, argv);
   MSG_function_register("app", &app);
   MSG_create_environment(argv[1]);
-  MSG_launch_application(argv[2]);
+  MSG_process_create("app", app, NULL, MSG_get_host_by_name("Tremblay"));
   return MSG_main();
 }