X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/504b4d20dd2db9ea1eaa9c4b390b2a412d7c9779..71855c3d4eb59aa687b05fa351bb09df42495a43:/src/simdag/sd_link.c diff --git a/src/simdag/sd_link.c b/src/simdag/sd_link.c index c7a30c20fa..4e0baed990 100644 --- a/src/simdag/sd_link.c +++ b/src/simdag/sd_link.c @@ -118,19 +118,19 @@ double SD_link_get_current_bandwidth(SD_link_t link) { } /** - * \brief Returns the value of a certain link property + * \brief Returns the value of a given link property * * \param workstation a workstation * \param name a property name - * \return value of a property + * \return value of a property (or NULL if property not set) */ -const char* SD_link_get_property_value(SD_link_t link, char* name) +const char* SD_link_get_property_value(SD_link_t link, const char* name) { return xbt_dict_get_or_null(SD_link_get_properties(link), name); } /** - * \brief Returns a xbt_dynar_t consisting of the list of properties assigned to a link + * \brief Returns a #xbt_dict_t consisting of the list of properties assigned to a link * * \param link a link * \return the dictionary containing the properties associated with the link @@ -140,7 +140,7 @@ xbt_dict_t SD_link_get_properties(SD_link_t link) SD_CHECK_INIT_DONE(); xbt_assert0((link != NULL), "Invalid parameters"); - return (surf_workstation_model->common_public->get_link_properties(link->surf_link)); + return (surf_workstation_model->common_public->get_properties(link->surf_link)); }