emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#51734: closed (29.0.50; got slow)


From: GNU bug Tracking System
Subject: bug#51734: closed (29.0.50; got slow)
Date: Fri, 12 Nov 2021 20:07:01 +0000

Your message dated Fri, 12 Nov 2021 15:06:33 -0500
with message-id <1c5199f3-45ce-c98e-aecd-9ce76b2f7c9c@cornell.edu>
and subject line Re: bug#51734: 29.0.50; got slow
has caused the debbugs.gnu.org bug report #51734,
regarding 29.0.50; got slow
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
51734: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=51734
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: 29.0.50; got slow Date: Wed, 10 Nov 2021 09:36:14 +0900 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (x86_64-pc-cygwin)
Hi,

I'm sorry for my ambiguous report, but the redisplay or the cursor
movement on an Emacs screen got awkward and slow recently.  This
happens on Emacs git master built on 64-bit Cygwin.
For instance, the cursor moves not smoothly while repeating `C-n's,
`C-s' takes a couple of seconds for the text searched to appear, etc.
It should have happened after my build on Thu 4 Nov 22:00 UTC
through the previous build on Mon 8 Nov 22:00 UTC.

Thanks.

In GNU Emacs 29.0.50 (build 1, x86_64-pc-cygwin, GTK+ Version 3.22.28, cairo 
version 1.17.4)
 of 2021-11-10 built on localhost
Windowing system distributor 'The Cygwin/X Project', version 11.0.12012000
Configured using:
 'configure 'CFLAGS=-O0 -g3' --verbose --with-x-toolkit=gtk3
 --with-imagemagick'



--- End Message ---
--- Begin Message --- Subject: Re: bug#51734: 29.0.50; got slow Date: Fri, 12 Nov 2021 15:06:33 -0500 User-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.3.0
On 11/12/2021 2:26 PM, Eli Zaretskii wrote:
Date: Fri, 12 Nov 2021 13:22:28 -0500
Cc: yamaoka@jpl.org, 51734@debbugs.gnu.org
From: Ken Brown <kbrown@cornell.edu>

The only thing I can think of is that Cygwin is probably the only system that
has timerfd and that also has to use timers to poll for input.  (The others all
use SIGIO, if I'm not mistaken.)  By using two different kinds of timers
simultaneously, we're getting timers expiring twice as often and not at regular
intervals.  Could this account for the slowdown?

At what frequency does the other timer tick, the one used to poll for
input?

They're both used to poll for input, and both at the same frequency (I think every second). For systems without SIGIO, keyboard.c:start_polling creates an atimer "poll_timer" via a call to start_atimer. The latter calls set_alarm, which now (after commit 858868e3) calls both timerfd_settime and timer_settime. So we have both a timerfd and a POSIX timer, both serving the same purpose AFAICT.

When I said "not at regular intervals" above, I meant that there will sometimes be delays before Emacs notices a timer expiring, so the two timers will get out of phase with another.

I hope this makes some sense. I find keyboard.c and the whole alarm setup confusing, so I could easily have gotten some things wrong.

In any case, I think I should go ahead and install the patch to make the master
branch usable again on Cygwin.

Feel free.

Done, and I'm closing the bug.

Ken


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]