X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3e697d0a3c14acfc95f73f509af52d1872a85b0c..4bf8a2ad076530e531857dca1682f53f7ab94078:/src/msg/instr_msg_task.cpp diff --git a/src/msg/instr_msg_task.cpp b/src/msg/instr_msg_task.cpp index f804005feb..8b35b94e3d 100644 --- a/src/msg/instr_msg_task.cpp +++ b/src/msg/instr_msg_task.cpp @@ -53,7 +53,7 @@ void TRACE_msg_task_execute_start(msg_task_t task) char str[INSTR_DEFAULT_STR_SIZE]; container_t process_container = PJ_container_get (instr_process_id(MSG_process_self(), str, len)); - simgrid::instr::Type* type = PJ_type_get("MSG_PROCESS_STATE", process_container->type); + simgrid::instr::Type* type = PJ_type_get("MSG_PROCESS_STATE", process_container->type_); simgrid::instr::Value* val = simgrid::instr::Value::get("task_execute", type); new simgrid::instr::PushStateEvent(MSG_get_clock(), process_container, type, val); } @@ -68,7 +68,7 @@ void TRACE_msg_task_execute_end(msg_task_t task) char str[INSTR_DEFAULT_STR_SIZE]; container_t process_container = PJ_container_get (instr_process_id(MSG_process_self(), str, len)); - simgrid::instr::Type* type = PJ_type_get("MSG_PROCESS_STATE", process_container->type); + simgrid::instr::Type* type = PJ_type_get("MSG_PROCESS_STATE", process_container->type_); new simgrid::instr::PopStateEvent(MSG_get_clock(), process_container, type); } } @@ -93,7 +93,7 @@ void TRACE_msg_task_get_start() char str[INSTR_DEFAULT_STR_SIZE]; container_t process_container = PJ_container_get (instr_process_id(MSG_process_self(), str, len)); - simgrid::instr::Type* type = PJ_type_get("MSG_PROCESS_STATE", process_container->type); + simgrid::instr::Type* type = PJ_type_get("MSG_PROCESS_STATE", process_container->type_); simgrid::instr::Value* val = simgrid::instr::Value::get("receive", type); new simgrid::instr::PushStateEvent(MSG_get_clock(), process_container, type, val); } @@ -108,7 +108,7 @@ void TRACE_msg_task_get_end(double start_time, msg_task_t task) char str[INSTR_DEFAULT_STR_SIZE]; container_t process_container = PJ_container_get (instr_process_id(MSG_process_self(), str, len)); - simgrid::instr::Type* type = PJ_type_get("MSG_PROCESS_STATE", process_container->type); + simgrid::instr::Type* type = PJ_type_get("MSG_PROCESS_STATE", process_container->type_); new simgrid::instr::PopStateEvent(MSG_get_clock(), process_container, type); char key[INSTR_DEFAULT_STR_SIZE]; @@ -128,7 +128,7 @@ int TRACE_msg_task_put_start(msg_task_t task) char str[INSTR_DEFAULT_STR_SIZE]; container_t process_container = PJ_container_get (instr_process_id(MSG_process_self(), str, len)); - simgrid::instr::Type* type = PJ_type_get("MSG_PROCESS_STATE", process_container->type); + simgrid::instr::Type* type = PJ_type_get("MSG_PROCESS_STATE", process_container->type_); simgrid::instr::Value* val = simgrid::instr::Value::get("send", type); new simgrid::instr::PushStateEvent(MSG_get_clock(), process_container, type, val); @@ -150,7 +150,7 @@ void TRACE_msg_task_put_end() char str[INSTR_DEFAULT_STR_SIZE]; container_t process_container = PJ_container_get (instr_process_id(MSG_process_self(), str, len)); - simgrid::instr::Type* type = PJ_type_get("MSG_PROCESS_STATE", process_container->type); + simgrid::instr::Type* type = PJ_type_get("MSG_PROCESS_STATE", process_container->type_); new simgrid::instr::PopStateEvent(MSG_get_clock(), process_container, type); } }