From: mquinson Date: Thu, 22 Jul 2004 03:26:36 +0000 (+0000) Subject: improve documentation X-Git-Tag: v3.3~5039 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/b6b6d68ab902831149a669ad2c4effa34237a7f9 improve documentation git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@309 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/virtu.h b/include/virtu.h index a57ccdb442..8da06b2e1b 100644 --- a/include/virtu.h +++ b/include/virtu.h @@ -39,18 +39,19 @@ BEGIN_DECL /** * gras_os_time: - * - * Get the time in number of second since the Epoch. + * @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_os_time(void); /** * gras_os_sleep: - * @sec: number of seconds to sleep - * @usec: number of microseconds to 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_os_sleep(unsigned long sec, unsigned long usec);