Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Function MSG_get_host_number() is not deprecated anymore.
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Wed, 17 Oct 2012 12:40:46 +0000 (14:40 +0200)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Wed, 17 Oct 2012 13:23:38 +0000 (15:23 +0200)
Acknowledge commit b00e4794c073855ab40697e9ec648c6a67f013e9
(Doesn't see why MSG_get_host_number should be deprecated.)

ChangeLog
src/msg/msg_host.c

index c4bb06a..9f0dfe4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -18,6 +18,7 @@ SimGrid (3.8) NOT RELEASED; urgency=low
  * Use the "msg_" prefix for all datatypes (instead of m_, msg_ and MSG_),
    please stop using the old ones, they are DEPRECATED.
  * Deprecate MSG_clean(). No need to call it anymore.
  * Use the "msg_" prefix for all datatypes (instead of m_, msg_ and MSG_),
    please stop using the old ones, they are DEPRECATED.
  * Deprecate MSG_clean(). No need to call it anymore.
+ * Function MSG_get_host_number() is not deprecated anymore.
 
  Documentation:
  * Split the doc into a user guide and a reference guide.
 
  Documentation:
  * Split the doc into a user guide and a reference guide.
index 73eb35a..a503903 100644 (file)
@@ -131,6 +131,9 @@ void __MSG_host_destroy(msg_host_t host) {
   free(host);
 }
 
   free(host);
 }
 
+/** \ingroup m_host_management
+ * \brief Return the current number MSG hosts.
+ */
 int MSG_get_host_number(void)
 {
   return xbt_lib_length(host_lib);
 int MSG_get_host_number(void)
 {
   return xbt_lib_length(host_lib);