X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b9625f82f86db0674e911887addce45dca31b57f..6fbcdfade89b3812c24152c86f8aa3be510df7f2:/src/instr/instr_resource_utilization.cpp diff --git a/src/instr/instr_resource_utilization.cpp b/src/instr/instr_resource_utilization.cpp index 1e52e6919a..8af9cc2dbb 100644 --- a/src/instr/instr_resource_utilization.cpp +++ b/src/instr/instr_resource_utilization.cpp @@ -1,21 +1,21 @@ -/* Copyright (c) 2010-2020. The SimGrid Team. +/* Copyright (c) 2010-2023. 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 "src/instr/instr_private.hpp" +#include "xbt/log.h" #include XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_resource, instr, "tracing (un)-categorized resource utilization"); -namespace simgrid { -namespace instr { +namespace simgrid::instr { void resource_set_utilization(const char* type, const char* name, const char* resource, const std::string& category, double value, double now, double delta) { // only trace resource utilization if resource is known by tracing mechanism - container_t container = Container::by_name_or_null(resource); + Container* container = Container::by_name_or_null(resource); if (container == nullptr || value == 0.0) return; @@ -32,5 +32,4 @@ void resource_set_utilization(const char* type, const char* name, const char* re container->get_variable(name)->instr_event(now, delta, resource, value); } } -} // namespace instr -} // namespace simgrid +} // namespace simgrid::instr