From 28454810018766c6ad88c778c2ce97c41f818a9f Mon Sep 17 00:00:00 2001 From: Samuel Lepetit Date: Thu, 21 Jun 2012 14:53:44 +0200 Subject: [PATCH 1/1] Add TRACE_msg_process_kill to the list of functions executed at the end of a process when trace is enabled --- src/msg/msg_process.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/msg/msg_process.c b/src/msg/msg_process.c index 8576f90ff0..96a9cf48ac 100644 --- a/src/msg/msg_process.c +++ b/src/msg/msg_process.c @@ -171,14 +171,16 @@ m_process_t MSG_process_create_with_environment(const char *name, if (SIMIX_process_self()) { simdata->PPID = MSG_process_get_PID(MSG_process_self()); + #ifdef HAVE_TRACING + MSG_process_on_exit((int_f_pvoid_t)TRACE_msg_process_kill,MSG_process_self()); + #endif } else { simdata->PPID = -1; } #ifdef HAVE_TRACING TRACE_msg_process_create(name, simdata->PID, simdata->m_host); -#endif - + #endif /* Let's create the process: SIMIX may decide to start it right now, * even before returning the flow control to us */ simcall_process_create(&process, name, code, simdata, SIMIX_host_get_name(host->smx_host), -1, -- 2.20.1