mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
47328317b3
l/gvfs-1.48.1-x86_64-1.txz: Upgraded. l/imagemagick-7.0.11_10-x86_64-1.txz: Upgraded. n/php-7.4.18-x86_64-1.txz: Upgraded. This update fixes bugs and security issues. For more information, see: https://www.php.net/ChangeLog-7.php#7.4.18 (* Security fix *) n/postfix-3.6.0-x86_64-1.txz: Upgraded. x/libepoxy-1.5.7-x86_64-1.txz: Upgraded. x/libinput-1.17.2-x86_64-1.txz: Upgraded. x/xorgproto-2021.4-x86_64-1.txz: Upgraded. xap/pavucontrol-4.0-x86_64-4.txz: Rebuilt. Fix segfault after crtl-Q. Thanks to Jonathan Woithe and 2slguevH. xap/pidgin-2.14.4-x86_64-1.txz: Upgraded.
20 lines
844 B
Diff
20 lines
844 B
Diff
--- ./src/evdev.c.orig 2021-04-29 23:25:41.531076400 -0500
|
|
+++ ./src/evdev.c 2021-04-30 12:39:02.636755868 -0500
|
|
@@ -1028,7 +1028,7 @@
|
|
|
|
/* if we have a current libinput_dispatch() snapshot, compare our
|
|
* event time with the one from the snapshot. If we have more than
|
|
- * 10ms delay, complain about it. This catches delays in processing
|
|
+ * 75ms delay, complain about it. This catches delays in processing
|
|
* where there is no steady event flow and thus SYN_DROPPED may not
|
|
* get hit by the kernel despite us being too slow.
|
|
*/
|
|
@@ -1037,7 +1037,7 @@
|
|
return;
|
|
|
|
tdelta = us2ms(libinput->dispatch_time - eventtime);
|
|
- if (tdelta > 10) {
|
|
+ if (tdelta > 75) {
|
|
evdev_log_bug_client_ratelimit(device,
|
|
&device->delay_warning_limit,
|
|
"event processing lagging behind by %dms, your system is too slow\n",
|