X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cba7a4411e9eb8cd10066db126c413363c65111a..d6eb772e45cc853fc204bb5aebeb411cdfa7c929:/src/mc/mc_replay.hpp diff --git a/src/mc/mc_replay.hpp b/src/mc/mc_replay.hpp index c4c2dd82ae..7c0ae437e1 100644 --- a/src/mc/mc_replay.hpp +++ b/src/mc/mc_replay.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2008-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2008-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. */ @@ -6,19 +6,26 @@ #ifndef SIMGRID_MC_REPLAY_H #define SIMGRID_MC_REPLAY_H -#include "xbt/base.h" #include /** Replay path (if any) in string representation * * This is using the format generated by traceToString(). + * Use a function to avoid static initialization order fiasco. */ -XBT_PUBLIC_DATA(std::string) MC_record_path; +inline auto& MC_record_path() +{ + static std::string value; + return value; +} /** Whether the replay mode is enabled */ static inline int MC_record_replay_is_active() { - return not MC_record_path.empty(); + return not MC_record_path().empty(); } +/** Whether we should display extra information during this MC replay */ +extern bool simgrid_mc_replay_show_backtraces; + #endif