summaryrefslogtreecommitdiff
path: root/src/atimer.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2021-10-27 16:14:55 +0300
committerEli Zaretskii <eliz@gnu.org>2021-10-27 16:14:55 +0300
commit65cd2d90b7a894c184f45bfff52b7c6200ebc639 (patch)
tree4cc21e210f64b68481da5cb5d3ca1c8e523180e9 /src/atimer.c
parent4107549a614a9977cdec4cb7a1d5eaec72a3380f (diff)
downloademacs-65cd2d90b7a894c184f45bfff52b7c6200ebc639.tar.gz
; * src/atimer.c (init_atimer): Fix a typo in a comment.
Diffstat (limited to 'src/atimer.c')
-rw-r--r--src/atimer.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/atimer.c b/src/atimer.c
index 802f3c6a596..ab47bbf9688 100644
--- a/src/atimer.c
+++ b/src/atimer.c
@@ -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;