summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2011-06-01 12:20:11 +0930
committerRusty Russell <rusty@rustcorp.com.au>2011-06-01 11:47:38 +0200
commite340cd83f87a9ea02cacd9af520d154652c5afb1 (patch)
tree55e04ddb6d00c5f28f31a5a7eace8d249e871ef5 /lib
parentc29069e079018853867d643b8de604edd95c94d9 (diff)
downloadsamba-e340cd83f87a9ea02cacd9af520d154652c5afb1.tar.gz
samba-e340cd83f87a9ea02cacd9af520d154652c5afb1.tar.bz2
samba-e340cd83f87a9ea02cacd9af520d154652c5afb1.zip
lib/tevent/tevent.h: minor documentation fix.
The usecs arguments are (of course) microseconds, not milliseconds. This was added by Andreas Schneider in 6c1bcdc2 (tevent: Document the tevent helper functions.). Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Autobuild-User: Rusty Russell <rusty@rustcorp.com.au> Autobuild-Date: Wed Jun 1 11:47:38 CEST 2011 on sn-devel-104
Diffstat (limited to 'lib')
-rw-r--r--lib/tevent/tevent.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/tevent/tevent.h b/lib/tevent/tevent.h
index f4eb60c560..38a4a9c503 100644
--- a/lib/tevent/tevent.h
+++ b/lib/tevent/tevent.h
@@ -1218,7 +1218,7 @@ struct timeval tevent_timeval_current(void);
*
* @param[in] secs The seconds to set.
*
- * @param[in] usecs The milliseconds to set.
+ * @param[in] usecs The microseconds to set.
*
* @return A timeval structure with the given values.
*/
@@ -1253,7 +1253,7 @@ bool tevent_timeval_is_zero(const struct timeval *tv);
*
* @param[in] secs The seconds to add to the timeval.
*
- * @param[in] usecs The milliseconds to add to the timeval.
+ * @param[in] usecs The microseconds to add to the timeval.
*
* @return The timeval structure with the new time.
*/
@@ -1265,7 +1265,7 @@ struct timeval tevent_timeval_add(const struct timeval *tv, uint32_t secs,
*
* @param[in] secs The seconds of the offset from now.
*
- * @param[in] usecs The milliseconds of the offset from now.
+ * @param[in] usecs The microseconds of the offset from now.
*
* @return A timval with the given offset in the future.
*/