X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/abc6c695d534ee87fe91c84038ebbf6b9226575d..693f30b46244c152cd79cdf3ad35d4a79b866c9c:/src/instr/instr_msg_process.c diff --git a/src/instr/instr_msg_process.c b/src/instr/instr_msg_process.c index 9146943a27..c1a8154f46 100644 --- a/src/instr/instr_msg_process.c +++ b/src/instr/instr_msg_process.c @@ -45,12 +45,7 @@ void TRACE_msg_process_change_host(m_process_t process, m_host_t old_host, m_hos PJ_container_free(existing_container); //create new container on the new_host location - msg = PJ_container_new(instr_process_id(process, str, len), INSTR_MSG_PROCESS, PJ_container_get(new_host->name)); - - //set the state of this new container - type = PJ_type_get ("MSG_PROCESS_STATE", msg->type); - val_t value = PJ_value_get ("executing", type); - new_pajeSetState (MSG_get_clock(), msg, type, value); + msg = PJ_container_new(instr_process_id(process, str, len), INSTR_MSG_PROCESS, PJ_container_get(SIMIX_host_get_name(new_host->smx_host))); //end link msg = PJ_container_get(instr_process_id(process, str, len)); @@ -65,12 +60,8 @@ void TRACE_msg_process_create (const char *process_name, int process_pid, m_host int len = INSTR_DEFAULT_STR_SIZE; char str[INSTR_DEFAULT_STR_SIZE]; - container_t host_container = PJ_container_get (host->name); - container_t msg = PJ_container_new(instr_process_id_2(process_name, process_pid, str, len), INSTR_MSG_PROCESS, host_container); - - type_t type = PJ_type_get ("MSG_PROCESS_STATE", msg->type); - val_t value = PJ_value_get ("executing", type); - new_pajeSetState (MSG_get_clock(), msg, type, value); + container_t host_container = PJ_container_get (SIMIX_host_get_name(host->smx_host)); + PJ_container_new(instr_process_id_2(process_name, process_pid, str, len), INSTR_MSG_PROCESS, host_container); } }