X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/49c1c02fc8a4aba0a03de14ec4e7738bb16000a9..d3d4c51aace6f9daab7ee7bf664d9d56c81070f8:/src/s4u/s4u_netzone.cpp diff --git a/src/s4u/s4u_netzone.cpp b/src/s4u/s4u_netzone.cpp index 5895951e4a..b526fbf62a 100644 --- a/src/s4u/s4u_netzone.cpp +++ b/src/s4u/s4u_netzone.cpp @@ -4,13 +4,13 @@ * under the terms of the license (GNU LGPL) which comes with this package. */ #include "simgrid/kernel/routing/NetPoint.hpp" -#include "simgrid/msg.h" #include "simgrid/s4u/Engine.hpp" #include "simgrid/s4u/Host.hpp" #include "simgrid/s4u/NetZone.hpp" #include "simgrid/simix.hpp" #include "src/surf/network_interface.hpp" // Link FIXME: move to proper header #include "xbt/log.h" +#include XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_netzone, "S4U Networking Zones"); @@ -156,4 +156,22 @@ void sg_zone_get_hosts(sg_netzone_t netzone, xbt_dynar_t whereto) xbt_dynar_push(whereto, &host); } +/* ************************** Backward ABI compatibility *************************** */ +sg_netzone_t MSG_zone_get_root() __attribute__((alias("sg_zone_get_root"))); +; +const char* MSG_zone_get_name(sg_netzone_t zone) __attribute__((alias("sg_zone_get_name"))); +; +sg_netzone_t MSG_zone_get_by_name(const char* name) __attribute__((alias("sg_zone_get_by_name"))); +; +void MSG_zone_get_sons(sg_netzone_t zone, xbt_dict_t whereto) __attribute__((alias("sg_zone_get_sons"))); +; +const char* MSG_zone_get_property_value(sg_netzone_t zone, const char* name) + __attribute__((alias("sg_zone_get_property_value"))); +; +void MSG_zone_set_property_value(sg_netzone_t zone, const char* name, char* value) + __attribute__((alias("sg_zone_set_property_value"))); +; +void MSG_zone_get_hosts(sg_netzone_t zone, xbt_dynar_t whereto) __attribute__((alias("sg_zone_get_hosts"))); +; + SG_END_DECL()