Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[INSTR] Removed duplicate code in TRACE_surf_host_set_utilization
authorChristian Heinrich <franz-christian.heinrich@inria.fr>
Fri, 19 Feb 2016 12:46:39 +0000 (13:46 +0100)
committerChristian Heinrich <franz-christian.heinrich@inria.fr>
Mon, 22 Feb 2016 13:57:55 +0000 (14:57 +0100)
src/instr/instr_resource_utilization.cpp

index 235321f..33d13c0 100644 (file)
@@ -94,7 +94,8 @@ void TRACE_surf_host_set_utilization(const char *resource,
                                      double delta)
 {
   //only trace host utilization if host is known by tracing mechanism
                                      double delta)
 {
   //only trace host utilization if host is known by tracing mechanism
-  if (!PJ_container_get_or_null(resource))
+  container_t container = PJ_container_get_or_null(resource);
+  if (!container)
     return;
   if (!value)
     return;
     return;
   if (!value)
     return;
@@ -102,7 +103,6 @@ void TRACE_surf_host_set_utilization(const char *resource,
   //trace uncategorized host utilization
   if (TRACE_uncategorized()){
     XBT_DEBUG("UNCAT HOST [%f - %f] %s power_used %f", now, now+delta, resource, value);
   //trace uncategorized host utilization
   if (TRACE_uncategorized()){
     XBT_DEBUG("UNCAT HOST [%f - %f] %s power_used %f", now, now+delta, resource, value);
-    container_t container = PJ_container_get (resource);
     type_t type = PJ_type_get ("power_used", container->type);
     instr_event (now, delta, type, container, value);
   }
     type_t type = PJ_type_get ("power_used", container->type);
     instr_event (now, delta, type, container, value);
   }
@@ -115,7 +115,6 @@ void TRACE_surf_host_set_utilization(const char *resource,
     char category_type[INSTR_DEFAULT_STR_SIZE];
     snprintf (category_type, INSTR_DEFAULT_STR_SIZE, "p%s", category);
     XBT_DEBUG("CAT HOST [%f - %f] %s %s %f", now, now+delta, resource, category_type, value);
     char category_type[INSTR_DEFAULT_STR_SIZE];
     snprintf (category_type, INSTR_DEFAULT_STR_SIZE, "p%s", category);
     XBT_DEBUG("CAT HOST [%f - %f] %s %s %f", now, now+delta, resource, category_type, value);
-    container_t container = PJ_container_get (resource);
     type_t type = PJ_type_get (category_type, container->type);
     instr_event (now, delta, type, container, value);
   }
     type_t type = PJ_type_get (category_type, container->type);
     instr_event (now, delta, type, container, value);
   }