Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update versionning info, and add a cheat sheet to the makefile in order to do so...
[simgrid.git] / include / virtu.h
index 2466a33..8da06b2 100644 (file)
 BEGIN_DECL
 
 /**
- * gras_time:
- * 
- * Get the time in number of second since the Epoch.
+ * gras_os_time:
+ * @Returns: number of second since the Epoch.
  * (00:00:00 UTC, January 1, 1970 in Real Life, and begining of simulation in SG)
+ * 
+ * Get the current time.
  */
-double gras_time(void);
+double gras_os_time(void);
 
 /**
- * gras_sleep:
- * @sec: number of seconds to sleep
- * @usec: number of microseconds to sleep
+ * gras_os_sleep:
+ * @Param1: number of seconds to sleep
+ * @Param2: number of microseconds to sleep
  * 
- * sleeps for the given amount of seconds plus the given amount of microseconds.
+ * sleeps for the given amount of time.
  */
-void gras_sleep(unsigned long sec, unsigned long usec);
+void gras_os_sleep(unsigned long sec, unsigned long usec);
 
 END_DECL