X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/212f410b75a1c5886c7b831adef56cde7e338d3e..3ea4deb41842881771399a95aeca3ecc9d9d2154:/src/msg/instr_msg_task.cpp?ds=sidebyside diff --git a/src/msg/instr_msg_task.cpp b/src/msg/instr_msg_task.cpp index dcc93390b5..1ac51f1190 100644 --- a/src/msg/instr_msg_task.cpp +++ b/src/msg/instr_msg_task.cpp @@ -36,7 +36,7 @@ void TRACE_msg_task_create(msg_task_t task) static std::atomic_ullong counter{0}; task->counter = counter++; task->category = nullptr; - + if(MC_is_active()) MC_ignore_heap(&(task->counter), sizeof(task->counter)); @@ -54,8 +54,8 @@ 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_t type = PJ_type_get ("MSG_PROCESS_STATE", process_container->type); - val_t value = PJ_value_get ("task_execute", type); - new PushStateEvent (MSG_get_clock(), process_container, type, value); + value* val = value::get("task_execute", type); + new PushStateEvent(MSG_get_clock(), process_container, type, val); } } @@ -94,8 +94,8 @@ void TRACE_msg_task_get_start() container_t process_container = PJ_container_get (instr_process_id(MSG_process_self(), str, len)); type_t type = PJ_type_get ("MSG_PROCESS_STATE", process_container->type); - val_t value = PJ_value_get ("receive", type); - new PushStateEvent (MSG_get_clock(), process_container, type, value); + value* val = value::get("receive", type); + new PushStateEvent(MSG_get_clock(), process_container, type, val); } } @@ -129,8 +129,8 @@ 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_t type = PJ_type_get ("MSG_PROCESS_STATE", process_container->type); - val_t value = PJ_value_get ("send", type); - new PushStateEvent (MSG_get_clock(), process_container, type, value); + value* val = value::get("send", type); + new PushStateEvent(MSG_get_clock(), process_container, type, val); char key[INSTR_DEFAULT_STR_SIZE]; snprintf (key, INSTR_DEFAULT_STR_SIZE, "p%lld", task->counter);