X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/fceae12df8bc1bfd677832a1f73f899f1fc3e8c6..b277818bec65f5664e6880a2cf7ab3551804d589:/src/msg/instr_msg_task.cpp diff --git a/src/msg/instr_msg_task.cpp b/src/msg/instr_msg_task.cpp index cfd1d388a3..11c9293fc8 100644 --- a/src/msg/instr_msg_task.cpp +++ b/src/msg/instr_msg_task.cpp @@ -54,7 +54,7 @@ void TRACE_msg_task_execute_start(msg_task_t task) container_t process_container = PJ_container_get (instr_process_id(MSG_process_self(), str, len)); Type* type = PJ_type_get ("MSG_PROCESS_STATE", process_container->type); - value* val = value::get("task_execute", type); + Value* val = Value::get("task_execute", type); new PushStateEvent(MSG_get_clock(), process_container, type, val); } } @@ -94,7 +94,7 @@ void TRACE_msg_task_get_start() container_t process_container = PJ_container_get (instr_process_id(MSG_process_self(), str, len)); Type* type = PJ_type_get ("MSG_PROCESS_STATE", process_container->type); - value* val = value::get("receive", type); + Value* val = Value::get("receive", type); new PushStateEvent(MSG_get_clock(), process_container, type, val); } } @@ -129,7 +129,7 @@ int TRACE_msg_task_put_start(msg_task_t task) container_t process_container = PJ_container_get (instr_process_id(MSG_process_self(), str, len)); Type* type = PJ_type_get ("MSG_PROCESS_STATE", process_container->type); - value* val = value::get("send", type); + Value* val = Value::get("send", type); new PushStateEvent(MSG_get_clock(), process_container, type, val); char key[INSTR_DEFAULT_STR_SIZE];