X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e28b29cf7d18c8f61475480fe6af607bed2df8e2..e0db756d6838ce418258f8e8f44cc37ce44123e5:/src/instr/instr_msg_process.c diff --git a/src/instr/instr_msg_process.c b/src/instr/instr_msg_process.c index 8a392dc95a..99a8e630a4 100644 --- a/src/instr/instr_msg_process.c +++ b/src/instr/instr_msg_process.c @@ -47,12 +47,11 @@ void TRACE_msg_process_change_host(m_process_t process, m_host_t old_host, m_hos //create new container on the new_host location msg = newContainer(instr_process_id(process, str, len), INSTR_MSG_PROCESS, getContainer(new_host->name)); -// type = getType (process->category); -// new_pajeSetVariable (MSG_get_clock(), msg, type, 1); //set the state of this new container type = getType ("MSG_PROCESS_STATE", msg->type); - new_pajeSetState (MSG_get_clock(), msg, type, "executing"); + val_t value = getValueByName ("executing", type); + new_pajeSetState (MSG_get_clock(), msg, type, value); //end link msg = getContainer(instr_process_id(process, str, len)); @@ -70,14 +69,10 @@ void TRACE_msg_process_create (m_process_t process) m_host_t host = MSG_process_get_host(process); container_t host_container = getContainer(host->name); container_t msg = newContainer(instr_process_id(process, str, len), INSTR_MSG_PROCESS, host_container); -// type_t type = getType (category); -// if (!type){ -// type = getVariableType(category, color, msg->type); -// } -// new_pajeSetVariable (SIMIX_get_clock(), msg, type, 1); type_t type = getType ("MSG_PROCESS_STATE", msg->type); - new_pajeSetState (MSG_get_clock(), msg, type, "executing"); + val_t value = getValueByName ("executing", type); + new_pajeSetState (MSG_get_clock(), msg, type, value); } } @@ -100,7 +95,8 @@ void TRACE_msg_process_suspend(m_process_t process) container_t process_container = getContainer (instr_process_id(process, str, len)); type_t type = getType ("MSG_PROCESS_STATE", process_container->type); - new_pajePushState (MSG_get_clock(), process_container, type, "suspend"); + val_t value = getValueByName ("suspend", type); + new_pajePushState (MSG_get_clock(), process_container, type, value); } } @@ -124,7 +120,8 @@ void TRACE_msg_process_sleep_in(m_process_t process) container_t process_container = getContainer (instr_process_id(process, str, len)); type_t type = getType ("MSG_PROCESS_STATE", process_container->type); - new_pajePushState (MSG_get_clock(), process_container, type, "sleep"); + val_t value = getValueByName ("sleep", type); + new_pajePushState (MSG_get_clock(), process_container, type, value); } }