X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6511b78ff810ead55a110d42b01a08255a55b56d..b6b6d68ab902831149a669ad2c4effa34237a7f9:/include/virtu.h diff --git a/include/virtu.h b/include/virtu.h index 2466a33592..8da06b2e1b 100644 --- a/include/virtu.h +++ b/include/virtu.h @@ -38,21 +38,22 @@ 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