Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Functions added.
[simgrid.git] / src / msg_simix / msg_simix_deployment.c
index b7e14f4..6f5487a 100644 (file)
  */
 void MSG_launch_application(const char *file) 
 {
+
   xbt_assert0(msg_global,"MSG_global_init_args has to be called before MSG_launch_application.");
+       SIMIX_function_register_process_create(&__MSG_process_create_with_arguments);
+       SIMIX_function_register_process_kill(&MSG_process_kill);
        SIMIX_launch_application(file);
 
        return;