mirror of
https://github.com/ipxe/ipxe
synced 2025-12-26 17:42:47 +03:00
[time] Add Linux time source using gettimeofday()
Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
18
src/include/ipxe/linux/linux_time.h
Normal file
18
src/include/ipxe/linux/linux_time.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef _IPXE_LINUX_TIME_H
|
||||
#define _IPXE_LINUX_TIME_H
|
||||
|
||||
/** @file
|
||||
*
|
||||
* Linux time source
|
||||
*
|
||||
*/
|
||||
|
||||
FILE_LICENCE ( GPL2_OR_LATER );
|
||||
|
||||
#ifdef TIME_LINUX
|
||||
#define TIME_PREFIX_linux
|
||||
#else
|
||||
#define TIME_PREFIX_linux __linux_
|
||||
#endif
|
||||
|
||||
#endif /* _IPXE_LINUX_TIME_H */
|
||||
@@ -44,6 +44,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
|
||||
|
||||
/* Include all architecture-independent time API headers */
|
||||
#include <ipxe/null_time.h>
|
||||
#include <ipxe/linux/linux_time.h>
|
||||
|
||||
/* Include all architecture-dependent time API headers */
|
||||
#include <bits/time.h>
|
||||
|
||||
@@ -37,7 +37,6 @@ FILE_LICENCE(GPL2_OR_LATER);
|
||||
#include <linux/types.h>
|
||||
#include <linux/posix_types.h>
|
||||
typedef __kernel_pid_t pid_t;
|
||||
typedef __kernel_time_t time_t;
|
||||
typedef __kernel_suseconds_t suseconds_t;
|
||||
typedef __kernel_loff_t loff_t;
|
||||
#include <linux/time.h>
|
||||
|
||||
Reference in New Issue
Block a user