X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d7344bf4cd4b75fe33e19f2ac1994b200962aa7e..b277818bec65f5664e6880a2cf7ab3551804d589:/src/msg/instr_msg_process.cpp diff --git a/src/msg/instr_msg_process.cpp b/src/msg/instr_msg_process.cpp index b0ad4301b0..6ed284fc26 100644 --- a/src/msg/instr_msg_process.cpp +++ b/src/msg/instr_msg_process.cpp @@ -37,7 +37,7 @@ void TRACE_msg_process_change_host(msg_process_t process, msg_host_t new_host) //start link container_t msg = PJ_container_get (instr_process_id(process, str, len)); - type_t type = PJ_type_get ("MSG_PROCESS_LINK", PJ_type_get_root()); + Type* type = PJ_type_get ("MSG_PROCESS_LINK", PJ_type_get_root()); new StartLinkEvent (MSG_get_clock(), PJ_container_get_root(), type, msg, "M", key); //destroy existing container of this process @@ -93,9 +93,9 @@ void TRACE_msg_process_suspend(msg_process_t process) char str[INSTR_DEFAULT_STR_SIZE]; container_t process_container = PJ_container_get (instr_process_id(process, str, len)); - type_t type = PJ_type_get ("MSG_PROCESS_STATE", process_container->type); - val_t value = s_val::PJ_value_get ("suspend", type); - new PushStateEvent (MSG_get_clock(), process_container, type, value); + Type* type = PJ_type_get ("MSG_PROCESS_STATE", process_container->type); + Value* val = Value::get("suspend", type); + new PushStateEvent(MSG_get_clock(), process_container, type, val); } } @@ -106,7 +106,7 @@ void TRACE_msg_process_resume(msg_process_t process) char str[INSTR_DEFAULT_STR_SIZE]; container_t process_container = PJ_container_get (instr_process_id(process, str, len)); - type_t type = PJ_type_get ("MSG_PROCESS_STATE", process_container->type); + Type* type = PJ_type_get ("MSG_PROCESS_STATE", process_container->type); new PopStateEvent (MSG_get_clock(), process_container, type); } } @@ -118,9 +118,9 @@ void TRACE_msg_process_sleep_in(msg_process_t process) char str[INSTR_DEFAULT_STR_SIZE]; container_t process_container = PJ_container_get (instr_process_id(process, str, len)); - type_t type = PJ_type_get ("MSG_PROCESS_STATE", process_container->type); - val_t value = s_val::PJ_value_get ("sleep", type); - new PushStateEvent (MSG_get_clock(), process_container, type, value); + Type* type = PJ_type_get ("MSG_PROCESS_STATE", process_container->type); + Value* val = Value::get("sleep", type); + new PushStateEvent(MSG_get_clock(), process_container, type, val); } } @@ -131,7 +131,7 @@ void TRACE_msg_process_sleep_out(msg_process_t process) char str[INSTR_DEFAULT_STR_SIZE]; container_t process_container = PJ_container_get (instr_process_id(process, str, len)); - type_t type = PJ_type_get ("MSG_PROCESS_STATE", process_container->type); + Type* type = PJ_type_get ("MSG_PROCESS_STATE", process_container->type); new PopStateEvent (MSG_get_clock(), process_container, type); } }