Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] removing unused code
authorschnorr <schnorr@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Mon, 7 Feb 2011 13:36:36 +0000 (13:36 +0000)
committerschnorr <schnorr@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Mon, 7 Feb 2011 13:36:36 +0000 (13:36 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9581 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/instr/instr_msg_process.c

index 8a392dc95a1978c3def75414549656385402604b..9c4866ce2c2ed2d21b4223033855cdf363368579 100644 (file)
@@ -47,8 +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 = 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);
@@ -70,11 +68,6 @@ 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");