X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/69e220b88691323748bf7fe8bba8a23ce7078e31..bf2eac918e4a2b27667268c0f4355f0797fd5af4:/include/simgrid/host.h diff --git a/include/simgrid/host.h b/include/simgrid/host.h index c2287220af..85d17a22c3 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,15 +32,10 @@ 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); // ========== User Data ==============