From: navarro Date: Tue, 29 May 2012 12:48:38 +0000 (+0200) Subject: Don't abort if process does not exist. X-Git-Tag: v3_8~662^2~8 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/0c5ca693e080c0c95d7ca0d67199a7e6d1f05f46?ds=sidebyside Don't abort if process does not exist. --- diff --git a/src/msg/msg_process.c b/src/msg/msg_process.c index 3cf193e2f4..50c8fa14fc 100644 --- a/src/msg/msg_process.c +++ b/src/msg/msg_process.c @@ -322,8 +322,6 @@ xbt_dynar_t MSG_processes_as_dynar(void) { */ MSG_error_t MSG_process_set_kill_time(m_process_t process, double kill_time) { - xbt_assert(process != NULL, "Invalid parameter"); - simcall_process_set_kill_time(process,kill_time); return MSG_OK; }