X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/80754e48a1b954af90d9c70af3919b4ef19d834e..f2df13795e01302813a6aef10825ec7e922ce530:/src/msg/msg_process.c diff --git a/src/msg/msg_process.c b/src/msg/msg_process.c index 6fbe364a69..6a64e9db7d 100644 --- a/src/msg/msg_process.c +++ b/src/msg/msg_process.c @@ -56,9 +56,11 @@ void MSG_process_cleanup_from_SIMIX(smx_process_t smx_proc) /* This function creates a MSG process. It has the prototype enforced by SIMIX_function_register_process_create */ void MSG_process_create_from_SIMIX(smx_process_t* process, const char *name, - xbt_main_func_t code, void *data, - const char *hostname, double kill_time, int argc, char **argv, - xbt_dict_t properties, int auto_restart) + xbt_main_func_t code, void *data, + const char *hostname, double kill_time, + int argc, char **argv, + xbt_dict_t properties, int auto_restart, + smx_process_t parent_process) { msg_host_t host = MSG_get_host_by_name(hostname); msg_process_t p = MSG_process_create_with_environment(name, code, data,