X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d1673ac73027bea0d221b03568585a5b2ce6d04f..4b5d82355daac2ba088d17e0ca91fb29709866eb:/src/msg/msg_process.cpp diff --git a/src/msg/msg_process.cpp b/src/msg/msg_process.cpp index b2abbfb9db..5d588bdf95 100644 --- a/src/msg/msg_process.cpp +++ b/src/msg/msg_process.cpp @@ -42,7 +42,7 @@ void MSG_process_cleanup_from_SIMIX(smx_process_t smx_proc) simcall_process_set_data(smx_proc, NULL); } - TRACE_msg_process_end(smx_proc); + TRACE_msg_process_destroy(smx_proc->name, smx_proc->pid); // free the data if a function was provided if (msg_proc && msg_proc->data && msg_global->process_data_cleanup) { msg_global->process_data_cleanup(msg_proc->data); @@ -168,7 +168,7 @@ msg_process_t MSG_process_create_with_environment(const char *name, /* The TRACE process is created before the SIMIX one * to avoid issues when SIMIX decides to start the new * process right now (before returning the flow control). */ - int next_pid = SIMIX_process_get_maxpid(); + unsigned int next_pid = SIMIX_process_get_maxpid(); TRACE_msg_process_create(name, next_pid, host); /* Let's create the process: SIMIX may decide to start it right now,