diff options
Diffstat (limited to 'payloads')
-rw-r--r-- | payloads/libpayload/libc/time.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/payloads/libpayload/libc/time.c b/payloads/libpayload/libc/time.c index a04534554c..b49879b9d8 100644 --- a/payloads/libpayload/libc/time.c +++ b/payloads/libpayload/libc/time.c @@ -27,6 +27,10 @@ * SUCH DAMAGE. */ +/** @file libc/time.c + * @brief General Time Functions + */ + #include <config.h> #include <libpayload.h> #include <arch/rdtsc.h> @@ -110,6 +114,12 @@ static void gettimeofday_init(void) } #endif +/** + * Return the current time broken into a timeval structure + * @param tv A pointer to a timeval structure + * @param tz Added for compatability - not used + * @return 0 for success + */ int gettimeofday(struct timeval *tv, void *tz) { /* Call the gtod init when we need it - this keeps |