]> AND Private Git Repository - loba.git/blobdiff - hostdata.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Conclusions for performance loss.
[loba.git] / hostdata.h
index 59ca35da06bb020cb6bbd771e73b189d6edc51d3..2c5379a37540831bbdc8fc7a6cce391f0238267b 100644 (file)
@@ -3,8 +3,12 @@
 
 #include <string>
 #include <vector>
-#include <msg/msg.h>
+#include <simgrid/msg.h>
+#include "simgrid_features.h"
 
+// Helper class that associates instances of itself with each host.
+// Facilitate global operations on hosts, and retreiving of host name
+// and mailboxes.
 class hostdata {
 public:
     static void create();
@@ -12,7 +16,7 @@ public:
     static size_t size()                        { return hosts.size(); }
     static const hostdata& at(size_t i)         { return hosts[i];     }
 
-    hostdata(m_host_t host);
+    hostdata(msg_host_t host);
     ~hostdata();
 
     const char* get_name() const                { return name;              }
@@ -22,7 +26,6 @@ public:
 private:
     // static list of hostdata's, used by create/destroy
     static std::vector<hostdata> hosts;
-    struct m_host_less;
 
     const char* name;
     std::string ctrl_mbox;