X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/828a4cda080ed2897f9d91198bcb8a8c30ff2da9..d7344bf4cd4b75fe33e19f2ac1994b200962aa7e:/src/msg/msg_process.cpp diff --git a/src/msg/msg_process.cpp b/src/msg/msg_process.cpp index af044f0d6c..b3ea3c98c1 100644 --- a/src/msg/msg_process.cpp +++ b/src/msg/msg_process.cpp @@ -189,7 +189,7 @@ void MSG_process_detach() */ void MSG_process_kill(msg_process_t process) { - simcall_process_kill(process->getImpl()); + process->kill(); } /** @@ -464,14 +464,14 @@ void MSG_process_on_exit(int_f_pvoid_pvoid_t fun, void *data) { * If the flag is set to 1, the process will be automatically restarted when its host comes back up. */ XBT_PUBLIC(void) MSG_process_auto_restart_set(msg_process_t process, int auto_restart) { - simcall_process_auto_restart_set(process->getImpl(), auto_restart); + process->setAutoRestart(auto_restart); } /** * \ingroup m_process_management * \brief Restarts a process from the beginning. */ XBT_PUBLIC(msg_process_t) MSG_process_restart(msg_process_t process) { - return simcall_process_restart(process->getImpl())->ciface(); + return process->restart(); } /** @ingroup m_process_management