X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ecd5f7562caf1d443bf22788fa5f4fac408776ec..2558c8c0eb206ff353cb88672f5a90cd0e2562d3:/src/mc/mc_record.cpp diff --git a/src/mc/mc_record.cpp b/src/mc/mc_record.cpp index 4af7633d9f..dd19a66a5d 100644 --- a/src/mc/mc_record.cpp +++ b/src/mc/mc_record.cpp @@ -1,29 +1,14 @@ -/* Copyright (c) 2014-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2014-2019. 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 -#include -#include - -#include -#include -#include - -#include "xbt/log.h" -#include "xbt/sysdep.h" - -#include "simgrid/simix.h" - -#include "src/kernel/context/Context.hpp" #include "src/mc/mc_record.hpp" -#include "src/mc/mc_replay.hpp" -#include "src/simix/ActorImpl.hpp" -#include "src/simix/smx_private.hpp" - -#include "src/mc/mc_base.h" +#include "src/kernel/activity/CommImpl.hpp" +#include "src/kernel/context/Context.hpp" #include "src/mc/Transition.hpp" +#include "src/mc/mc_base.h" +#include "src/mc/mc_replay.hpp" #if SIMGRID_HAVE_MC #include "src/mc/checker/Checker.hpp" @@ -36,8 +21,6 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_record, mc, " Logging specific to MC record/replay facility"); -std::string MC_record_path; - namespace simgrid { namespace mc { @@ -64,7 +47,7 @@ void replay(RecordTrace const& trace) } } -void replay(std::string path_string) +void replay(const std::string& path_string) { simgrid::mc::processes_time.resize(SIMIX_process_get_maxpid()); simgrid::mc::RecordTrace trace = simgrid::mc::parseRecordTrace(path_string.c_str());