X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0049d1fcfdafba3893e26714d575755194949765..97c735054d7772a511a6933745ef9158e3b2b29d:/src/mc/Process.hpp diff --git a/src/mc/Process.hpp b/src/mc/Process.hpp index 512f6f26af..5d50961f0e 100644 --- a/src/mc/Process.hpp +++ b/src/mc/Process.hpp @@ -124,17 +124,11 @@ public: return running_; } - void terminate(int status) + void terminate() { - status_ = status; running_ = false; } - int status() const - { - return status_; - } - template typename std::enable_if< std::is_class::value && std::is_trivial::value, int >::type send_message(M const& m) @@ -174,7 +168,6 @@ private: private: pid_t pid_; int socket_; - int status_; bool running_; std::vector memory_map_; remote_ptr maestro_stack_start_, maestro_stack_end_;