From 9579c93344a2264c88576dde6dd825512f897c3b Mon Sep 17 00:00:00 2001 From: schnorr Date: Tue, 3 Apr 2012 10:56:35 +0200 Subject: [PATCH] [trace] remove "executing" state from tracing/msg/process option, easing the gantt-chart analysis of MSG simulators details: - if you feel this is still necessary, submit a bug --- src/instr/instr_msg_process.c | 11 +---------- src/instr/instr_routing.c | 1 - 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/src/instr/instr_msg_process.c b/src/instr/instr_msg_process.c index 9146943a27..fc96c0cd86 100644 --- a/src/instr/instr_msg_process.c +++ b/src/instr/instr_msg_process.c @@ -47,11 +47,6 @@ 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 = 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); - //end link msg = PJ_container_get(instr_process_id(process, str, len)); type = PJ_type_get ("MSG_PROCESS_LINK", PJ_type_get_root()); @@ -66,11 +61,7 @@ void TRACE_msg_process_create (const char *process_name, int process_pid, m_host 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); + PJ_container_new(instr_process_id_2(process_name, process_pid, str, len), INSTR_MSG_PROCESS, host_container); } } diff --git a/src/instr/instr_routing.c b/src/instr/instr_routing.c index fa8b22c352..28e387107e 100644 --- a/src/instr/instr_routing.c +++ b/src/instr/instr_routing.c @@ -307,7 +307,6 @@ static void instr_routing_parse_start_host (sg_platf_host_cbarg_t host) if (msg_process == NULL){ msg_process = PJ_type_container_new("MSG_PROCESS", new->type); type_t state = PJ_type_state_new ("MSG_PROCESS_STATE", msg_process); - PJ_value_new ("executing", "0 1 0", state); PJ_value_new ("suspend", "1 0 1", state); PJ_value_new ("sleep", "1 1 0", state); PJ_value_new ("receive", "1 0 0", state); -- 2.20.1