Re: [PATCH] Introduce time_value64_t to keep track of real time in the kernel

2023-01-02 Thread Samuel Thibault
Applied, thanks! Flavio Cruz, le lun. 02 janv. 2023 18:15:15 -0500, a ecrit: > 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 tim

Re: [PATCH] Introduce time_value64_t to keep track of real time in the kernel

2023-01-02 Thread Flavio Cruz
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 mou

Re: [PATCH] Introduce time_value64_t to keep track of real time in the kernel

2022-12-28 Thread Samuel Thibault
Hello, Flavio Cruz, le mer. 28 déc. 2022 14:11:35 -0500, a ecrit: > The timestamp from keyboard and mouse events was removed. It does not > seem to be needed anywhere. But we cannot just drop it like that since the hurd console uses these events. Samuel

[PATCH] Introduce time_value64_t to keep track of real time in the kernel

2022-12-28 Thread Flavio Cruz
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 mous