X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/df9f711468e4a9eb4a387acac8859003a7177bcf..585dc40dd38b797005b02180030fdb2bec766b29:/src/mc/remote/CheckerSide.hpp diff --git a/src/mc/remote/CheckerSide.hpp b/src/mc/remote/CheckerSide.hpp index d89f7121f6..f4605e4cd2 100644 --- a/src/mc/remote/CheckerSide.hpp +++ b/src/mc/remote/CheckerSide.hpp @@ -21,9 +21,6 @@ class CheckerSide { event* socket_event_; event* signal_event_; std::unique_ptr base_{nullptr, &event_base_free}; -#if SIMGRID_HAVE_STATEFUL_MC - std::unique_ptr remote_memory_; -#endif Channel channel_; bool running_ = false; @@ -33,13 +30,12 @@ class CheckerSide { CheckerSide* child_checker_ = nullptr; void setup_events(bool socket_only); // Part of the initialization - void clear_memory_cache(); void handle_dead_child(int status); // Launched when the dying child is the PID we follow void handle_waitpid(); // Launched when receiving a sigchild public: explicit CheckerSide(int socket, CheckerSide* child_checker); - explicit CheckerSide(const std::vector& args, bool need_memory_introspection); + explicit CheckerSide(const std::vector& args); ~CheckerSide(); // No copy: @@ -66,9 +62,6 @@ public: pid_t get_pid() const { return pid_; } bool running() const { return running_; } void terminate() { running_ = false; } -#if SIMGRID_HAVE_STATEFUL_MC - RemoteProcessMemory* get_remote_memory() { return remote_memory_.get(); } -#endif }; } // namespace simgrid::mc