From f2bbca87181f2f59ba1dc4a838fb7676991af5d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Tue, 21 May 2013 00:24:07 +0200 Subject: [PATCH] Improve documentation --- include/ucore/clock.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/ucore/clock.h b/include/ucore/clock.h index 1ec4c0d..fce2c82 100644 --- a/include/ucore/clock.h +++ b/include/ucore/clock.h @@ -93,6 +93,8 @@ void uc_settable_clock_init(struct UCoreSettableClock *uclock); /** * Set the new timeval this clock will return + * + * @param tv new timeval to set the clock to **/ void uc_settable_clock_set_tv(struct UCoreSettableClock *uclock, const struct timeval *tv); @@ -101,6 +103,9 @@ void uc_settable_clock_set_tv(struct UCoreSettableClock *uclock, * Set the new time this clock will return * Convenience function that takes seconds/microseconds as arguments * instead of a struct timeval. + * + * @param secs seconds portion of the clock to set + * @param usecs microseconds portion of the clock to set. **/ void uc_settable_clock_set(struct UCoreSettableClock *uclock, time_t secs, suseconds_t usecs);