Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Change the name of a function which was not implemented yet
[simgrid.git] / include / gras / virtu.h
index 51939be..e15510e 100644 (file)
@@ -27,18 +27,17 @@ double gras_os_time(void);
 
 /** @brief sleeps for the given amount of time.
  *  @param sec: number of seconds to sleep
- *  @param usec: number of microseconds to sleep
  */
-void gras_os_sleep(unsigned long sec, unsigned long usec);
+void gras_os_sleep(double sec);
 
 /** @brief get the fully-qualified name of the current host
  *
- * Returns the fully-qualified name of the host machine, or NULL if the name
+ * Returns the fully-qualified name of the host machine, or "localhost" if the name
  * cannot be determined.  Always returns the same value, so multiple calls
  * cause no problems.
  */
 const char *
-gras_get_my_fqdn(void);
+gras_os_myname(void);
 
 /** @} */
 END_DECL()