Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cleanups in the MC protocol
[simgrid.git] / src / mc / remote / Client.hpp
index 6d2dadc..149140e 100644 (file)
@@ -36,6 +36,14 @@ public:
   Client();
   explicit Client(int fd) : active_(true), channel_(fd) {}
   void handleMessages();
+
+private:
+  void handleDeadlockCheck(mc_message_t* msg);
+  void handleContinue(mc_message_t* msg);
+  void handleSimcall(s_mc_message_simcall_handle_t* message);
+  void handleRestore(s_mc_message_restore_t* msg);
+
+public:
   Channel const& getChannel() const { return channel_; }
   Channel& getChannel() { return channel_; }
   void mainLoop();