Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Unused code.
[simgrid.git] / src / mc / remote / Channel.hpp
index b703e0b..cd216b4 100644 (file)
@@ -13,7 +13,7 @@
 namespace simgrid {
 namespace mc {
 
-/** A channel for exchanging messages between model-checker and model-checked
+/** A channel for exchanging messages between model-checker and model-checked app
  *
  *  This abstracts away the way the messages are transferred. Currently, they
  *  are sent over a (connected) `SOCK_SEQPACKET` socket.
@@ -26,7 +26,6 @@ class Channel {
   }
 
 public:
-  Channel() = default;
   explicit Channel(int sock) : socket_(sock) {}
   ~Channel();
 
@@ -34,15 +33,6 @@ public:
   Channel(Channel const&) = delete;
   Channel& operator=(Channel const&) = delete;
 
-  // Move:
-  Channel(Channel&& that) : socket_(that.socket_) { that.socket_ = -1; }
-  Channel& operator=(Channel&& that)
-  {
-    this->socket_ = that.socket_;
-    that.socket_  = -1;
-    return *this;
-  }
-
   // Send
   int send(const void* message, size_t size) const;
   int send(e_mc_message_type type) const
@@ -63,7 +53,7 @@ public:
     return this->receive(&m, sizeof(M));
   }
 
-  int getSocket() const { return socket_; }
+  int get_socket() const { return socket_; }
 };
 }
 }