Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Misc. comments
[simgrid.git] / src / mc / Channel.hpp
index 61514ad..5ede34f 100644 (file)
 namespace simgrid {
 namespace mc {
 
+/** A channel for exchanging messages between model-checker and model-checked
+ *
+ *  This hides the way the messages are transfered. Currently, they are sent
+ *  over a SOCK_DGRAM socket.
+ */
 class Channel {
   int socket_ = -1;
   template<class M>