Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove the stateful model-checking from the archive. It's not working anymore
[simgrid.git] / src / mc / mc_global.cpp
index 262fa72..d7962fa 100644 (file)
@@ -6,22 +6,6 @@
 #include "src/kernel/actor/ActorImpl.hpp"
 #include "src/mc/mc.h"
 
-#if SIMGRID_HAVE_STATEFUL_MC
-#include "src/mc/api/RemoteApp.hpp"
-#include "src/mc/explo/Exploration.hpp"
-#include "src/mc/inspect/mc_unw.hpp"
-#include "src/mc/mc_config.hpp"
-#include "src/mc/mc_private.hpp"
-#include "src/mc/remote/AppSide.hpp"
-#include "src/mc/sosp/Snapshot.hpp"
-
-#include <array>
-#include <boost/core/demangle.hpp>
-#include <cerrno>
-#include <cstring>
-#include <libunwind.h>
-#endif
-
 #include <sys/time.h>
 #include <sys/wait.h>
 #include <unistd.h>
@@ -34,41 +18,6 @@ std::vector<double> processes_time;
 
 }
 
-#if SIMGRID_HAVE_STATEFUL_MC
-
-namespace simgrid::mc {
-
-/*******************************  Core of MC *******************************/
-/**************************************************************************/
-void dumpStack(FILE* file, unw_cursor_t* cursor)
-{
-  int nframe = 0;
-  std::array<char, 100> buffer;
-
-  unw_word_t off;
-  do {
-    const char* name = not unw_get_proc_name(cursor, buffer.data(), buffer.size(), &off) ? buffer.data() : "?";
-    // Unmangle C++ names:
-    std::string realname = boost::core::demangle(name);
-
-#if defined(__x86_64__)
-    unw_word_t rip = 0;
-    unw_word_t rsp = 0;
-    unw_get_reg(cursor, UNW_X86_64_RIP, &rip);
-    unw_get_reg(cursor, UNW_X86_64_RSP, &rsp);
-    fprintf(file, "  %i: %s (RIP=0x%" PRIx64 " RSP=0x%" PRIx64 ")\n", nframe, realname.c_str(), (std::uint64_t)rip,
-            (std::uint64_t)rsp);
-#else
-    fprintf(file, "  %i: %s\n", nframe, realname.c_str());
-#endif
-
-    ++nframe;
-  } while (unw_step(cursor));
-}
-
-} // namespace simgrid::mc
-#endif
-
 double MC_process_clock_get(const simgrid::kernel::actor::ActorImpl* process)
 {
   if (process) {