Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
MSG_getClock is a stupid name.
[simgrid.git] / src / msg / global.c
index 450fd23..2d000f4 100644 (file)
@@ -539,8 +539,16 @@ MSG_error_t MSG_clean(void)
 
 /** \ingroup msg_easier_life
  * \brief A clock (in second).
 
 /** \ingroup msg_easier_life
  * \brief A clock (in second).
+ * \deprecated Use MSG_get_clock
  */
 double MSG_getClock(void) {
   return surf_get_clock();
 }
 
  */
 double MSG_getClock(void) {
   return surf_get_clock();
 }
 
+/** \ingroup msg_easier_life
+ * \brief A clock (in second).
+ */
+double MSG_get_clock(void) {
+  return surf_get_clock();
+}
+