GNU bug report logs -
#25481
`guile --listen' broken on guile master
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Wed, 01 Mar 2017 17:30:11 +0100
with message-id <87r32hdkoc.fsf <at> pobox.com>
and subject line Re: bug#25481: `guile --listen' broken on guile master
has caused the debbugs.gnu.org bug report #25481,
regarding `guile --listen' broken on guile master
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
25481: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=25481
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
(originally accidentally sent to guile-devel instead of here, sorry for
xpost!)
If you use the latest Guile, you'll find that "guile --listen" has
broken. If you try:
./meta/guile --listen=/tmp/guile-socket
then you'll find that you have a very short window in which you can do:
M-x geiser-connect-local <RET> guile <RET> /tmp/guile-socket <RET>
but then the main repl, the one you launched in the shell, hangs.
And if you wait too long or disconnect then reconnect, you won't be
able to connect again.
What you'll see in the guile process is this:
scheme@(guile-user)> In thread:
ERROR: In procedure select: Interrupted system call
Here's the commit that introduces the bug:
206dced87f425af7eed628530313067a45bee2c2
I've verified that it works right before that commit.
The commit does some things involving changing the code involving the
"select" and etc in the repl code, so maybe that's related.
[Message part 3 (message/rfc822, inline)]
On Thu 19 Jan 2017 01:47, Christopher Allan Webber <cwebber <at> dustycloud.org> writes:
> (originally accidentally sent to guile-devel instead of here, sorry for
> xpost!)
>
> If you use the latest Guile, you'll find that "guile --listen" has
> broken. If you try:
> ./meta/guile --listen=/tmp/guile-socket
>
> then you'll find that you have a very short window in which you can do:
> M-x geiser-connect-local <RET> guile <RET> /tmp/guile-socket <RET>
>
> but then the main repl, the one you launched in the shell, hangs.
> And if you wait too long or disconnect then reconnect, you won't be
> able to connect again.
>
> What you'll see in the guile process is this:
>
> scheme@(guile-user)> In thread:
> ERROR: In procedure select: Interrupted system call
select really shouldn't be throwing exceptions on EINTR; it should be
called in a loop anyway, so calling scheme can run interrupts then.
Changed select to just return when async interrupts are pending
(e.g. the post-GC hooks), which seems to fix this bug.
Andy
This bug report was last modified 8 years and 162 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.