diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-01-03 00:41:42 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-03 00:43:04 +0100 |
commit | d7348c94453d2662affecbb7605047044898ed19 (patch) | |
tree | bde2413d0cfb14962f8f543ad96765a445920908 /Makefrag.am | |
parent | 276f997fd7a51385829fec6d460d0a588b0bad7c (diff) | |
download | gnumach-d7348c94453d2662affecbb7605047044898ed19.tar.gz gnumach-d7348c94453d2662affecbb7605047044898ed19.tar.bz2 gnumach-d7348c94453d2662affecbb7605047044898ed19.zip |
Introduce time_value64_t to keep track of real time in the kernel
time_value64_t uses int64_t to track seconds and nanoseconds and hence
is Y2038 proof. It does not have nano second resolution but it could
be provided in the future.
Removed include/sys/time.h as it remaps time_value_t into timeval which
can create confusion.
The timestamp from keyboard and mouse events is no longer set and
replaced with rpc_time_value for better compatibility.
Diffstat (limited to 'Makefrag.am')
-rw-r--r-- | Makefrag.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefrag.am b/Makefrag.am index 2840234f..c778ed80 100644 --- a/Makefrag.am +++ b/Makefrag.am @@ -453,7 +453,7 @@ include_mach_debug_HEADERS = \ # Other headers for the distribution. We don't install these, because the # GNU C library has correct versions for users to use. -# other-sys-headers := types.h time.h reboot.h ioctl.h +# other-sys-headers := types.h reboot.h ioctl.h # other-mach-headers := mig_support.h mach_traps.h error.h # other-headers := alloca.h |