Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Warning removal: switched the next_pid variable in MSG_process_create_with_environmen...
[simgrid.git] / src / msg / msg_process.cpp
index b2abbfb..5d588bd 100644 (file)
@@ -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,