Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill dead code.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sat, 19 Oct 2019 19:35:56 +0000 (21:35 +0200)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Sat, 19 Oct 2019 19:35:56 +0000 (21:35 +0200)
examples/s4u/app-bittorrent/s4u-bittorrent.hpp
examples/s4u/dht-chord/s4u-dht-chord.cpp
examples/s4u/dht-chord/s4u-dht-chord.hpp

index 0895354..06fabfa 100644 (file)
@@ -77,15 +77,6 @@ public:
       : type(type), peer_id(peer_id), return_mailbox(return_mailbox), piece(piece){};
 };
 
-class HostBittorrent {
-  simgrid::s4u::Host* host = nullptr;
-
-public:
-  explicit HostBittorrent(simgrid::s4u::Host* ptr) : host(ptr) {}
-  HostBittorrent(const HostBittorrent&) = delete;
-  HostBittorrent& operator=(const HostBittorrent&) = delete;
-};
-
 extern std::default_random_engine generator;
 
 #endif /* BITTORRENT_BITTORRENT_HPP_ */
index 221099c..33acd5f 100644 (file)
@@ -6,7 +6,6 @@
 #include "s4u-dht-chord.hpp"
 
 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_chord, "Messages specific for this s4u example");
-simgrid::xbt::Extension<simgrid::s4u::Host, HostChord> HostChord::EXTENSION_ID;
 
 int nb_bits  = 24;
 int nb_keys  = 0;
@@ -45,10 +44,6 @@ int main(int argc, char* argv[])
   nb_keys = 1U << nb_bits;
   XBT_DEBUG("Sets nb_keys to %d", nb_keys);
 
-  HostChord::EXTENSION_ID = simgrid::s4u::Host::extension_create<HostChord>();
-  for (auto const& host : simgrid::s4u::Engine::get_instance()->get_all_hosts())
-    host->extension_set(new HostChord(host));
-
   e.register_actor<Node>("node");
   e.load_deployment(options[1]);
 
index 353a10c..c279369 100644 (file)
@@ -23,18 +23,6 @@ extern int timeout;
 
 extern std::default_random_engine generator;
 
-class HostChord {
-  simgrid::s4u::Host* host = nullptr;
-
-public:
-  static simgrid::xbt::Extension<simgrid::s4u::Host, HostChord> EXTENSION_ID;
-
-  explicit HostChord(simgrid::s4u::Host* ptr) : host(ptr) {}
-  HostChord(const HostChord&) = delete;
-  HostChord& operator=(const HostChord&) = delete;
-
-};
-
 /* Types of tasks exchanged between nodes. */
 enum e_message_type_t {
   FIND_SUCCESSOR,