X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1b1186172fb51c59ab9f22e1cf312e300c685eb9..ace6ec5d4b81b85275732c9ba244d358ddc30107:/src/instr/instr_paje_header.cpp diff --git a/src/instr/instr_paje_header.cpp b/src/instr/instr_paje_header.cpp index a5a68afd6f..d69e4ddf15 100644 --- a/src/instr/instr_paje_header.cpp +++ b/src/instr/instr_paje_header.cpp @@ -1,14 +1,13 @@ -/* Copyright (c) 2010-2022. The SimGrid Team. - * All rights reserved. */ +/* 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 "simgrid/Exception.hpp" #include "simgrid/version.h" #include "src/instr/instr_private.hpp" #include "src/smpi/include/private.hpp" -#include "xbt/virtu.h" /* xbt::cmdline */ +#include +#include extern std::ofstream tracing_file; namespace simgrid::instr::paje { @@ -18,7 +17,7 @@ void dump_generator_version() tracing_file << "#This file was generated using SimGrid-" << SIMGRID_VERSION_MAJOR << "." << SIMGRID_VERSION_MINOR << "." << SIMGRID_VERSION_PATCH << '\n'; tracing_file << "#["; - for (auto const& str : simgrid::xbt::cmdline) { + for (auto const& str : simgrid::s4u::Engine::get_instance()->get_cmdline()) { tracing_file << str << " "; } tracing_file << "]\n";