summaryrefslogtreecommitdiffstats
path: root/payloads
diff options
context:
space:
mode:
authorNicola Corna <nicola@corna.info>2017-08-14 20:29:16 +0200
committerMartin Roth <martinroth@google.com>2017-08-21 16:53:20 +0000
commitb016f144cc9301b42b9578131b49ac2100926383 (patch)
tree1baa8349a2abebb42d1c22a63d9cb4993fa92209 /payloads
parent7f395fe95bd525581214bc12bb7a231be766a502 (diff)
downloadcoreboot-b016f144cc9301b42b9578131b49ac2100926383.tar.gz
coreboot-b016f144cc9301b42b9578131b49ac2100926383.tar.bz2
coreboot-b016f144cc9301b42b9578131b49ac2100926383.zip
libpayload: add time()
Change-Id: I97e393537ccc71ea454bb0d6cdbbb7ed32485f1e Signed-off-by: Nicola Corna <nicola@corna.info> Reviewed-on: https://review.coreboot.org/21011 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'payloads')
-rw-r--r--payloads/libpayload/include/time.h1
-rw-r--r--payloads/libpayload/libc/time.c26
2 files changed, 21 insertions, 6 deletions
diff --git a/payloads/libpayload/include/time.h b/payloads/libpayload/include/time.h
index 25f476c82e8e..42be725e3129 100644
--- a/payloads/libpayload/include/time.h
+++ b/payloads/libpayload/include/time.h
@@ -44,6 +44,7 @@ struct timeval {
suseconds_t tv_usec; /**< Microseconds */
};
+time_t time(time_t *tp);
int gettimeofday(struct timeval *tv, void *tz);
/** @} */
diff --git a/payloads/libpayload/libc/time.c b/payloads/libpayload/libc/time.c
index 4ed788fbdc80..46306bb1bac7 100644
--- a/payloads/libpayload/libc/time.c
+++ b/payloads/libpayload/libc/time.c
@@ -121,13 +121,12 @@ static void gettimeofday_init(void)
#endif
/**
- * Return the current time broken into a timeval structure.
+ * Return the current time expressed as seconds from 00:00:00 UTC, 1 Jan 1970.
*
- * @param tv A pointer to a timeval structure.
- * @param tz Added for compatability - not used.
- * @return 0 for success (this function cannot return non-zero currently).
+ * @param tp When not NULL, set this to the current time in seconds.
+ * @return The current time in seconds.
*/
-int gettimeofday(struct timeval *tv, void *tz)
+time_t time(time_t *tp)
{
/*
* Call the gtod init when we need it - this keeps the code from
@@ -138,7 +137,22 @@ int gettimeofday(struct timeval *tv, void *tz)
update_clock();
- tv->tv_sec = clock.secs;
+ if (tp)
+ *tp = clock.secs;
+
+ return clock.secs;
+}
+
+/**
+ * Return the current time broken into a timeval structure.
+ *
+ * @param tv A pointer to a timeval structure.
+ * @param tz Added for compatibility - not used.
+ * @return 0 for success (this function cannot return non-zero currently).
+ */
+int gettimeofday(struct timeval *tv, void *tz)
+{
+ tv->tv_sec = time(NULL);
tv->tv_usec = clock.usecs;
return 0;