X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/149c63f36e15b8500b1e826bda5138318ff7ba2b..1379a51d59d779ba9732e143068e668db4732b1a:/include/simgrid/host.h diff --git a/include/simgrid/host.h b/include/simgrid/host.h index c2287220af..843c0fcfb4 100644 --- a/include/simgrid/host.h +++ b/include/simgrid/host.h @@ -11,16 +11,15 @@ #include SG_BEGIN_DECL -/** @brief Host datatype. +/** Returns an array of all existing hosts (use sg_host_count() to know the array size). * - * A location (or host) is any possible place where an actor may run. Thus it is represented as a - * physical resource with computing capabilities, some mailboxes to enable running actors to - * communicate with remote ones, and some private data that can be only accessed by local actors. + * @remark The host order in this array is generally different from the + * creation/declaration order in the XML platform (we use a hash table + * internally). */ - XBT_PUBLIC sg_host_t* sg_host_list(); -/** @brief Return the current number of hosts. */ +/** Returns the amount of hosts existing in the platform. */ XBT_PUBLIC size_t sg_host_count(); /** @@ -33,17 +32,13 @@ XBT_PUBLIC xbt_dynar_t sg_hosts_as_dynar(); XBT_PUBLIC size_t sg_host_extension_create(void (*deleter)(void*)); XBT_PUBLIC void* sg_host_extension_get(const_sg_host_t host, size_t rank); -/** @brief Finds a sg_host_t using its name. - * - * This is a name directory service - * @param name the name of an host. - * @return the corresponding host - */ +/** Finds an host from its name */ XBT_PUBLIC sg_host_t sg_host_by_name(const char* name); -/** @brief Return the name of the #sg_host_t. */ +/** @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. * @@ -59,6 +54,7 @@ XBT_PUBLIC void sg_host_data_set(sg_host_t host, void* userdata); XBT_ATTRIB_DEPRECATED_v328("Please use sg_host_data_set()") XBT_PUBLIC void sg_host_user_set(sg_host_t host, void* userdata); XBT_ATTRIB_DEPRECATED_v328("Please use sg_host_data_set(h, NULL)") XBT_PUBLIC void sg_host_user_destroy(sg_host_t host); +#endif // ========= storage related functions ============ /** @brief Return the list of mount point names on an host.