X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a182030b5a8c0db05a1de18ca230b61e76363ebc..6760cb07d6b57be16928d95339d71e57c4e24f36:/src/instr/msg_process_instr.c diff --git a/src/instr/msg_process_instr.c b/src/instr/msg_process_instr.c index 03da8b2b69..86875a41b7 100644 --- a/src/instr/msg_process_instr.c +++ b/src/instr/msg_process_instr.c @@ -1,14 +1,8 @@ -/* - * msg_process_instr.c - * - * Created on: Feb 24, 2010 - * Author: Lucas Schnorr - * License: This program is free software; you can redistribute - * it and/or modify it under the terms of the license - * (GNU LGPL) which comes with this package. - * - * Copyright (c) 2009 The SimGrid team. - */ +/* Copyright (c) 2010. The SimGrid Team. + * All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ #include "instr/private.h" @@ -23,6 +17,8 @@ void __TRACE_msg_process_init (void) void __TRACE_msg_process_location (m_process_t process) { + if (!(IS_TRACING_PROCESSES || IS_TRACING_VOLUME)) return; + char name[200], alias[200]; m_host_t host = MSG_process_get_host (process); TRACE_process_container (process, name, 200); @@ -30,12 +26,23 @@ void __TRACE_msg_process_location (m_process_t process) //check if process_alias container is already created if (!xbt_dict_get_or_null (process_containers, alias)){ - if (IS_TRACING_PROCESSES) pajeCreateContainer (MSG_get_clock(), alias, "PROCESS", MSG_host_get_name(host), name); - if (IS_TRACING_PROCESSES) pajePushState (MSG_get_clock(), "presence", alias, "1"); + pajeCreateContainer (MSG_get_clock(), alias, "PROCESS", MSG_host_get_name(host), name); + if (IS_TRACING_PROCESSES) pajeSetState (MSG_get_clock(), "category", alias, process->category); xbt_dict_set (process_containers, xbt_strdup(alias), xbt_strdup("1"), xbt_free); } } +void __TRACE_msg_process_present (m_process_t process) +{ + if (!IS_TRACING_PROCESSES) return; + + //updating presence state of this process location + char alias[200]; + m_host_t host = MSG_process_get_host (process); + TRACE_process_alias_container (process, host, alias, 200); + pajePushState (MSG_get_clock(), "presence", alias, "presence"); +} + /* * TRACE_msg_set_process_category: tracing interface function */ @@ -49,6 +56,7 @@ void TRACE_msg_set_process_category (m_process_t process, const char *category) //create container of type "PROCESS" to indicate location __TRACE_msg_process_location (process); + __TRACE_msg_process_present (process); //create container of type "process" to indicate behavior char name[200]; @@ -62,15 +70,15 @@ void TRACE_msg_set_process_category (m_process_t process, const char *category) */ void TRACE_msg_process_change_host (m_process_t process, m_host_t old_host, m_host_t new_host) { - if (!IS_TRACING_PROCESSES || !IS_TRACED(process)) return; + if (!(IS_TRACING_PROCESSES || IS_TRACING_VOLUME) || !IS_TRACED(process)) return; + //disabling presence in old_host (__TRACE_msg_process_not_present) char alias[200]; TRACE_process_alias_container (process, old_host, alias, 200); if (IS_TRACING_PROCESSES) pajePopState (MSG_get_clock(), "presence", alias); __TRACE_msg_process_location (process); - TRACE_process_alias_container (process, new_host, alias, 200); - if (IS_TRACING_PROCESSES) pajePushState (MSG_get_clock(), "presence", alias, "1"); + __TRACE_msg_process_present (process); } void TRACE_msg_process_kill (m_process_t process)