4ad6b64c40
readdir and getpwuid handling for DragonFly, avoids the mouse problems due to use of floating point math in a signal handler (xorg-server).
24 lines
1.1 KiB
Text
24 lines
1.1 KiB
Text
$NetBSD: patch-bl,v 1.4 2006/01/19 00:59:27 joerg Exp $
|
|
|
|
--- programs/Xserver/hw/xfree86/common/xf86Xinput.c.orig 2005-05-16 23:20:56.000000000 +0900
|
|
+++ programs/Xserver/hw/xfree86/common/xf86Xinput.c 2005-05-16 23:23:25.000000000 +0900
|
|
@@ -932,15 +932,10 @@
|
|
/* modeled from xf86Events.c */
|
|
if (device->ptrfeed->ctrl.threshold) {
|
|
if ((abs(dx) + abs(dy)) >= device->ptrfeed->ctrl.threshold) {
|
|
- local->dxremaind = ((float)dx * (float)(device->ptrfeed->ctrl.num)) /
|
|
- (float)(device->ptrfeed->ctrl.den) + local->dxremaind;
|
|
- valuator[0] = (int)local->dxremaind;
|
|
- local->dxremaind = local->dxremaind - (float)valuator[0];
|
|
-
|
|
- local->dyremaind = ((float)dy * (float)(device->ptrfeed->ctrl.num)) /
|
|
- (float)(device->ptrfeed->ctrl.den) + local->dyremaind;
|
|
- valuator[1] = (int)local->dyremaind;
|
|
- local->dyremaind = local->dyremaind - (float)valuator[1];
|
|
+ valuator[0] = (dx * device->ptrfeed->ctrl.num) /
|
|
+ device->ptrfeed->ctrl.den;
|
|
+ valuator[1] = (dy * device->ptrfeed->ctrl.num) /
|
|
+ device->ptrfeed->ctrl.den;
|
|
}
|
|
}
|
|
else if (dx || dy) {
|