GNU bug report logs - #2602
Emacs shell exits when executed command sets stdout and stderr to be non-blocking

Previous Next

Package: emacs;

Reported by: "William K. Foster" <wkf <at> alum.mit.edu>

Date: Mon, 9 Mar 2009 02:10:04 UTC

Severity: normal

Tags: unreproducible

Merged with 2653

Done: Andrew Hyatt <ahyatt <at> gmail.com>

Bug is archived. No further changes may be made.

Full log


Message #25 received at 2602 <at> debbugs.gnu.org (full text, mbox):

From: Andrew Hyatt <ahyatt <at> gmail.com>
To: "William K. Foster" <wkf <at> alum.mit.edu>
Cc: 2602 <at> debbugs.gnu.org
Subject: Re: bug#2602: Emacs shell exits when executed command sets stdout and
 stderr to be non-blocking
Date: Sun, 24 Jan 2016 17:03:50 -0500
I cannot reproduce this on Emacs 25.  Can you let me know if you are
still able to see this bug, otherwise I'll close this issue.

"William K. Foster" <wkf <at> alum.mit.edu> writes:

> Hello,
>
> Create an application that does the following:
>
> void setFdBlocking(int fd, bool block) {
> // Set an fd's blocking flag on or off.
> int flags;
>
> if (0 > (flags = fcntl(fd, F_GETFL, 0))) {
> throw;
> }
>
> if (block) {
> flags &= ~O_NONBLOCK;
> } else {
> flags |= O_NONBLOCK;
> }
>
> if (0 > fcntl(fd, F_SETFL, flags)) {
> throw;
> }
> }
>
> // Make Stdout and Stderr be non-blocking.
> setFdBlocking(1, false);
> setFdBlocking(2, false);
>
> If you execute the application from a shell inside emacs, the shell will exit when the command returns.
>
> This does not happen for a shell outside of emacs.
>
> Thanks.
>
> -William




This bug report was last modified 9 years and 122 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.