X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dc9b8feaddd53842f6204f4f24409b2382393fa9..1c75860aa49dbde3f251678a7d00a2e27660efa8:/src/instr/instr_paje_containers.cpp diff --git a/src/instr/instr_paje_containers.cpp b/src/instr/instr_paje_containers.cpp index 49271aaae2..95bf51d7ee 100644 --- a/src/instr/instr_paje_containers.cpp +++ b/src/instr/instr_paje_containers.cpp @@ -3,9 +3,14 @@ /* 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 "simgrid/Exception.hpp" #include "simgrid/s4u/Engine.hpp" #include "simgrid/s4u/Host.hpp" #include "src/instr/instr_private.hpp" +#include +#ifdef WIN32 +#include // _mkdir +#endif XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_containers, instr, "Paje tracing event system (containers)"); @@ -59,7 +64,7 @@ RouterContainer::RouterContainer(const std::string& name, Container* father) trivaNodeTypes.insert(type_->get_name()); } -HostContainer::HostContainer(simgrid::s4u::Host& host, NetZoneContainer* father) +HostContainer::HostContainer(simgrid::s4u::Host const& host, NetZoneContainer* father) : Container::Container(host.get_name(), "HOST", father) { xbt_assert(father, "Only the Root container has no father"); @@ -89,7 +94,9 @@ Container::Container(const std::string& name, const std::string& type_name, Cont //register all kinds by name if (not allContainers.emplace(name_, this).second) - THROWF(tracing_error, 1, "container %s already present in allContainers data structure", get_cname()); + throw simgrid::TracingError( + XBT_THROW_POINT, + simgrid::xbt::string_printf("container %s already present in allContainers data structure", get_cname())); XBT_DEBUG("Add container name '%s'", get_cname());