summaryrefslogtreecommitdiffstats
path: root/src/include/time.h
diff options
context:
space:
mode:
authorMichael Brown2012-03-19 17:59:53 +0100
committerMichael Brown2012-03-19 23:13:27 +0100
commit846bde90e6b1001480016fa46a957a9e726af68a (patch)
treecf3dfaaef4c90864c11c707482fde92f49b4abf7 /src/include/time.h
parent[test] Add self-tests for mktime() (diff)
downloadipxe-846bde90e6b1001480016fa46a957a9e726af68a.tar.gz
ipxe-846bde90e6b1001480016fa46a957a9e726af68a.tar.xz
ipxe-846bde90e6b1001480016fa46a957a9e726af68a.zip
[time] Define an API for getting the current time
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/time.h')
-rw-r--r--src/include/time.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/include/time.h b/src/include/time.h
index f33300ab..bc73af4c 100644
--- a/src/include/time.h
+++ b/src/include/time.h
@@ -7,6 +7,7 @@
*/
#include <sys/time.h>
+#include <ipxe/time.h>
/** Broken-down time */
struct tm {
@@ -30,6 +31,21 @@ struct tm {
int tm_isdst;
};
+/**
+ * Get current time in seconds since the Epoch
+ *
+ * @v t Time to fill in, or NULL
+ * @ret time Current time
+ */
+static inline time_t time ( time_t *t ) {
+ time_t now;
+
+ now = time_now();
+ if ( t )
+ *t = now;
+ return now;
+}
+
extern time_t mktime ( struct tm *tm );
#endif /* _TIME_H */