X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7d519276bb43a5868c98892970fff1a60919e53a..b299a7eeae86643b8ad61ec3273b82d99a392432:/include/simgrid/host.h diff --git a/include/simgrid/host.h b/include/simgrid/host.h index d8ff8f4e6a..0a872a65ed 100644 --- a/include/simgrid/host.h +++ b/include/simgrid/host.h @@ -38,19 +38,21 @@ XBT_PUBLIC sg_host_t sg_host_by_name(const char* name); /** @brief Return the name of the sg_host_t. */ XBT_PUBLIC const char* sg_host_get_name(const_sg_host_t host); -#ifndef DOXYGEN // ========== User Data ============== /** @brief Return the user data of a #sg_host_t. * * This functions returns the user data associated to @a host if any. */ XBT_PUBLIC void* sg_host_get_data(const_sg_host_t host); -XBT_ATTRIB_DEPRECATED_v330("Please use sg_host_get_data()") XBT_PUBLIC void* sg_host_data(const_sg_host_t host); + /** @brief Set the user data of a #sg_host_t. * * This functions attach @a data to @a host. */ XBT_PUBLIC void sg_host_set_data(sg_host_t host, void* userdata); + +#ifndef DOXYGEN +XBT_ATTRIB_DEPRECATED_v330("Please use sg_host_get_data()") XBT_PUBLIC void* sg_host_data(const_sg_host_t host); XBT_ATTRIB_DEPRECATED_v330("Please use sg_host_set_data()") XBT_PUBLIC void sg_host_data_set(sg_host_t host, void* userdata); #endif