]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/atimer.c (init_atimer): Fix a typo in a comment.
authorEli Zaretskii <eliz@gnu.org>
Wed, 27 Oct 2021 13:14:55 +0000 (16:14 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 27 Oct 2021 13:14:55 +0000 (16:14 +0300)
src/atimer.c

index 802f3c6a596b4e70ed455a6c00d7b5d00384e9be..ab47bbf96882e27370c93b679a590aad61c5b54a 100644 (file)
@@ -584,9 +584,10 @@ init_atimer (void)
             timerfd_create (CLOCK_REALTIME, TFD_NONBLOCK | TFD_CLOEXEC));
 # endif
   /* We're starting the alarms even if we have timerfd, because
-     timerfd events do not fired while Emacs Lisp is busy.  This might
-     or might not mean that the timerfd code doesn't really give us
-     anything and should be removed, see discussion in bug#19776.  */
+     timerfd events do not fire while Emacs Lisp is busy and doesn't
+     call thread_select.  This might or might not mean that the
+     timerfd code doesn't really give us anything and should be
+     removed, see discussion in bug#19776.  */
   struct sigevent sigev;
   sigev.sigev_notify = SIGEV_SIGNAL;
   sigev.sigev_signo = SIGALRM;