Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
routing stuff in SimDag is dead code added by navarrop (nobody ever used
authorFrederic Suter <frederic.suter@cc.in2p3.fr>
Thu, 14 Jan 2016 13:53:18 +0000 (14:53 +0100)
committerFrederic Suter <frederic.suter@cc.in2p3.fr>
Thu, 14 Jan 2016 19:19:31 +0000 (20:19 +0100)
it)

include/simgrid/simdag.h
src/simdag/sd_workstation.cpp

index a1e997f..5226d58 100644 (file)
@@ -98,11 +98,6 @@ typedef enum {
     @see SD_storage_management */
 typedef xbt_dictelm_t SD_storage_t;
 
-/************************** AS handling *************************************/
-XBT_PUBLIC(xbt_dict_t) SD_as_router_get_properties(const char *as);
-XBT_PUBLIC(const char*) SD_as_router_get_property_value(const char * as,
-                                                  const char *name);
-
 /************************** Link handling ***********************************/
 /** @defgroup SD_link_management Links
  *  @brief Functions for managing the network links
index 68bb80e..9b21a9a 100644 (file)
@@ -549,28 +549,3 @@ SD_task_t SD_workstation_get_current_task(SD_workstation_t workstation)
   return (sg_host_sd(workstation)->current_task);
 }
 
-/**
- * \brief Returns a #xbt_dict_t consisting of the list of properties assigned to the AS
- * or router
- *
- * \param AS, router name
- * \return the xbt_dict_t properties of the AS
- */
-xbt_dict_t SD_as_router_get_properties(const char *asr)
-{
-  return get_as_router_properties(asr);
-}
-/**
- * \brief Returns a #xbt_dict_t consisting of the list of properties assigned to the AS
- * or router
- *
- * \param AS, router name
- * \param The name of a properties
- * \return value of the properties
- */
-const char* SD_as_router_get_property_value(const char *asr, const char *name)
-{
-  xbt_dict_t dict = get_as_router_properties(asr);
-  if(!dict) return NULL;
-  return (const char*)xbt_dict_get_or_null(dict,name);
-}