From: Arnaud Giersch Date: Sun, 3 Nov 2019 11:26:45 +0000 (+0100) Subject: Remove old cruft. X-Git-Tag: v3.25~457 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/5bcfa838aea9427c19940d2ceda34a1e7f75374b Remove old cruft. --- diff --git a/teshsuite/msg/app-bittorrent/bittorrent.c b/teshsuite/msg/app-bittorrent/bittorrent.c index d278ae055b..aebee13797 100644 --- a/teshsuite/msg/app-bittorrent/bittorrent.c +++ b/teshsuite/msg/app-bittorrent/bittorrent.c @@ -8,14 +8,9 @@ #include "tracker.h" #include -#include /* snprintf */ - /** Bittorrent example launcher */ int main(int argc, char* argv[]) { - msg_host_t host; - unsigned i; - MSG_init(&argc, argv); /* Check the arguments */ @@ -23,12 +18,6 @@ int main(int argc, char* argv[]) MSG_create_environment(argv[1]); - xbt_dynar_t host_list = MSG_hosts_as_dynar(); - xbt_dynar_foreach (host_list, i, host) { - char descr[512]; - snprintf(descr, sizeof descr, "RngSream<%s>", MSG_host_get_name(host)); - } - MSG_function_register("tracker", tracker); MSG_function_register("peer", peer); @@ -36,7 +25,5 @@ int main(int argc, char* argv[]) MSG_main(); - xbt_dynar_free(&host_list); - return 0; }