aboutsummaryrefslogtreecommitdiff
path: root/i386/i386at/kd_mouse.c
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2023-01-03 00:41:42 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-01-03 00:43:04 +0100
commitd7348c94453d2662affecbb7605047044898ed19 (patch)
treebde2413d0cfb14962f8f543ad96765a445920908 /i386/i386at/kd_mouse.c
parent276f997fd7a51385829fec6d460d0a588b0bad7c (diff)
downloadgnumach-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 'i386/i386at/kd_mouse.c')
-rw-r--r--i386/i386at/kd_mouse.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/i386/i386at/kd_mouse.c b/i386/i386at/kd_mouse.c
index 3af21273..906c1d37 100644
--- a/i386/i386at/kd_mouse.c
+++ b/i386/i386at/kd_mouse.c
@@ -751,7 +751,9 @@ mouse_moved(struct mouse_motion where)
kd_event ev;
ev.type = MOUSE_MOTION;
- ev.time = time;
+ /* Not used but we set it to avoid garbage */
+ ev.unused_time.seconds = 0;
+ ev.unused_time.microseconds = 0;
ev.value.mmotion = where;
mouse_enqueue(&ev);
}
@@ -767,8 +769,10 @@ mouse_button(
kd_event ev;
ev.type = which;
- ev.time = time;
ev.value.up = (direction == MOUSE_UP) ? TRUE : FALSE;
+ /* Not used but we set it to avoid garbage */
+ ev.unused_time.seconds = 0;
+ ev.unused_time.microseconds = 0;
mouse_enqueue(&ev);
}