X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/81e2987ceb9329c50f0ac8109504aa5c784071e2..87116782db3154fb79cd353db446bd226cf15976:/src/msg/msg_host.c diff --git a/src/msg/msg_host.c b/src/msg/msg_host.c index 02d7f4060c..f96e1ee858 100644 --- a/src/msg/msg_host.c +++ b/src/msg/msg_host.c @@ -75,7 +75,6 @@ msg_host_t MSG_host_by_name(const char *name) return (msg_host_t) xbt_lib_get_elm_or_null(host_lib,name); } -static const char *msg_data = "data"; /** \ingroup m_host_management * * \brief Set the user data of a #msg_host_t. @@ -83,9 +82,8 @@ static const char *msg_data = "data"; * This functions checks whether some data has already been associated to \a host or not and attach \a data to \a host if it is possible. */ -msg_error_t MSG_host_set_data(msg_host_t host, void *data) -{ - MSG_host_set_property_value(host, msg_data, data, NULL); +msg_error_t MSG_host_set_data(msg_host_t host, void *data) { + sg_host_user_set(host, data); return MSG_OK; } @@ -96,9 +94,8 @@ msg_error_t MSG_host_set_data(msg_host_t host, void *data) * This functions checks whether \a host is a valid pointer or not and return the user data associated to \a host if it is possible. */ -void *MSG_host_get_data(msg_host_t host) -{ - return (void *)MSG_host_get_property_value(host, msg_data); +void *MSG_host_get_data(msg_host_t host) { + return sg_host_user(host); } /** \ingroup m_host_management