X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/25cf463b5d392c1b4476f544ab4f025ada984cd6..babdd699215108cc2d305e593f7e07a0fd5bf548:/src/instr/instr_msg_task.c diff --git a/src/instr/instr_msg_task.c b/src/instr/instr_msg_task.c index 423eab3cb1..d190e9a32c 100644 --- a/src/instr/instr_msg_task.c +++ b/src/instr/instr_msg_task.c @@ -10,9 +10,6 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_msg, instr, "MSG"); -/* - * TRACE_msg_set_task_category: tracing interface function - */ void TRACE_msg_set_task_category(m_task_t task, const char *category) { xbt_assert(task->category == NULL, "Task %p(%s) already has a category (%s).", @@ -49,9 +46,9 @@ void TRACE_msg_task_execute_start(m_task_t task) int len = INSTR_DEFAULT_STR_SIZE; char str[INSTR_DEFAULT_STR_SIZE]; - container_t process_container = getContainer (instr_process_id(MSG_process_self(), str, len)); - type_t type = getType ("MSG_PROCESS_STATE", process_container->type); - val_t value = getValueByName ("task_execute", type); + 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_pajePushState (MSG_get_clock(), process_container, type, value); } } @@ -64,8 +61,8 @@ void TRACE_msg_task_execute_end(m_task_t task) int len = INSTR_DEFAULT_STR_SIZE; char str[INSTR_DEFAULT_STR_SIZE]; - container_t process_container = getContainer (instr_process_id(MSG_process_self(), str, len)); - type_t type = getType ("MSG_PROCESS_STATE", process_container->type); + 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); new_pajePopState (MSG_get_clock(), process_container, type); } } @@ -90,9 +87,9 @@ void TRACE_msg_task_get_start(void) int len = INSTR_DEFAULT_STR_SIZE; char str[INSTR_DEFAULT_STR_SIZE]; - container_t process_container = getContainer (instr_process_id(MSG_process_self(), str, len)); - type_t type = getType ("MSG_PROCESS_STATE", process_container->type); - val_t value = getValueByName ("receive", type); + 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_pajePushState (MSG_get_clock(), process_container, type, value); } } @@ -105,14 +102,14 @@ void TRACE_msg_task_get_end(double start_time, m_task_t task) int len = INSTR_DEFAULT_STR_SIZE; char str[INSTR_DEFAULT_STR_SIZE]; - container_t process_container = getContainer (instr_process_id(MSG_process_self(), str, len)); - type_t type = getType ("MSG_PROCESS_STATE", process_container->type); + 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); new_pajePopState (MSG_get_clock(), process_container, type); char key[INSTR_DEFAULT_STR_SIZE]; snprintf (key, INSTR_DEFAULT_STR_SIZE, "p%lld", task->counter); - type = getType ("MSG_PROCESS_TASK_LINK", getRootType()); - new_pajeEndLink(MSG_get_clock(), getRootContainer(), type, process_container, "SR", key); + type = PJ_type_get ("MSG_PROCESS_TASK_LINK", PJ_type_get_root()); + new_pajeEndLink(MSG_get_clock(), PJ_container_get_root(), type, process_container, "SR", key); } } @@ -125,15 +122,15 @@ int TRACE_msg_task_put_start(m_task_t task) int len = INSTR_DEFAULT_STR_SIZE; char str[INSTR_DEFAULT_STR_SIZE]; - container_t process_container = getContainer (instr_process_id(MSG_process_self(), str, len)); - type_t type = getType ("MSG_PROCESS_STATE", process_container->type); - val_t value = getValueByName ("send", type); + 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_pajePushState (MSG_get_clock(), process_container, type, value); char key[INSTR_DEFAULT_STR_SIZE]; snprintf (key, INSTR_DEFAULT_STR_SIZE, "p%lld", task->counter); - type = getType ("MSG_PROCESS_TASK_LINK", getRootType()); - new_pajeStartLink(MSG_get_clock(), getRootContainer(), type, process_container, "SR", key); + type = PJ_type_get ("MSG_PROCESS_TASK_LINK", PJ_type_get_root()); + new_pajeStartLink(MSG_get_clock(), PJ_container_get_root(), type, process_container, "SR", key); } return 1; @@ -147,8 +144,8 @@ void TRACE_msg_task_put_end(void) int len = INSTR_DEFAULT_STR_SIZE; char str[INSTR_DEFAULT_STR_SIZE]; - container_t process_container = getContainer (instr_process_id(MSG_process_self(), str, len)); - type_t type = getType ("MSG_PROCESS_STATE", process_container->type); + 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); new_pajePopState (MSG_get_clock(), process_container, type); } }