From: Robert Pluim <rpluim@gmail.com>
To: Helmut Eller <eller.helmut@gmail.com>
Cc: 65211@debbugs.gnu.org
Subject: bug#65211: 30.0.50; threads and accept-process-output
Date: Thu, 10 Aug 2023 17:21:28 +0200 [thread overview]
Message-ID: <87sf8q6hzb.fsf@gmail.com> (raw)
In-Reply-To: <m21qgb2b1r.fsf@gmail.com> (Helmut Eller's message of "Thu, 10 Aug 2023 17:04:48 +0200")
>>>>> On Thu, 10 Aug 2023 17:04:48 +0200, Helmut Eller <eller.helmut@gmail.com> said:
Helmut> The test case from below hangs when executed with
Helmut> emacs -Q --batch -l apo-tests.el -f ert-run-tests-batch-and-exit
Helmut> It's not 100% reproducible, but it seems to hang 80% of the time.
Helmut> The test is fairly complicated and involves a TLS connection, a
Helmut> sub-process and a background thread. The background thread starts a
Helmut> sub-process and reads all its output until the process terminates. Then
Helmut> the main thread opens a TLS connection, sends a HTTP request and tries
Helmut> to read the response. At this point, accept-process-output hangs even
Helmut> though there is output available.
Helmut> I think the reason for this problem is that the sub-process uses a file
Helmut> descriptor (usually number 6) and sets
Helmut> fd_callback_info[6].waiting_thread to the background thread (in
Helmut> compute_non_keyboard_wait_mask) . Later, the TLS connection receives a
Helmut> file descriptor with the same number (6) because the sub-process closed
Helmut> it already. That would be fine, however
Helmut> fd_callback_info[6].waiting_thread is still set to the background
Helmut> thread. So this time compute_non_keyboard_wait_mask doesn't include 6
Helmut> in the wait mask. Because 6 is not in the wait mask,
Helmut> emacs_gnutls_record_check_pending will not be called and Emacs doesn't
Helmut> notice the buffered output.
Helmut> The intention in the code seems to be that clear_waiting_thread_info
Helmut> resets fd_callback_info[6].waiting_thread to NULL, however by the time
Helmut> that clear_waiting_thread_info is called, max_desc was reduced to 4,
Helmut> because somebody closed file descriptors 5 and 6. So
Helmut> clear_waiting_thread_info doesn't touch fd_callback_info[6].
Helmut> A possible solution would be to reset the .waiting_thread field in
Helmut> delete_read_fd, like so:
Helmut> diff --git a/src/process.c b/src/process.c
Helmut> index 08cb810ec13..74d0bf252ab 100644
Helmut> --- a/src/process.c
Helmut> +++ b/src/process.c
Helmut> @@ -513,6 +513,9 @@ delete_read_fd (int fd)
Helmut> {
Helmut> fd_callback_info[fd].func = 0;
Helmut> fd_callback_info[fd].data = 0;
Helmut> +
Helmut> + if (fd_callback_info[fd].waiting_thread == current_thread)
Helmut> + fd_callback_info[fd].waiting_thread = NULL;
Helmut> }
Helmut> }
Hmm. Maybe putting it in `deactivate_process' is better (not that Iʼve
tested 😺)
Robert
--
next prev parent reply other threads:[~2023-08-10 15:21 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-10 15:04 bug#65211: 30.0.50; threads and accept-process-output Helmut Eller
2023-08-10 15:21 ` Robert Pluim [this message]
2023-08-10 16:24 ` Helmut Eller
2023-08-11 8:32 ` Helmut Eller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87sf8q6hzb.fsf@gmail.com \
--to=rpluim@gmail.com \
--cc=65211@debbugs.gnu.org \
--cc=eller.helmut@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).