From: Philippe Troin <phil@fifi.org>
To: Denis Vlasenko <vda.linux@googlemail.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: O_NONBLOCK setting "leak" outside of a process??
Date: 29 Jan 2007 19:40:50 -0800 [thread overview]
Message-ID: <87bqkhuqpp.fsf@tantale.fifi.org> (raw)
In-Reply-To: <200701272152.11087.vda.linux@googlemail.com>
Denis Vlasenko <vda.linux@googlemail.com> writes:
> Hi,
>
> I am currently on Linux 2.6.18, x86_64.
> I came across strange behavior while working on one
> of busybox applets. I narrowed it down to these two
> trivial testcases:
>
> #include <unistd.h>
> #include <fcntl.h>
> int main() {
> fcntl(0, F_SETFL, fcntl(0, F_GETFL, 0) | O_NONBLOCK);
> return 0;
> }
>
> #include <unistd.h>
> #include <fcntl.h>
> int main() {
> fcntl(0, F_SETFL, fcntl(0, F_GETFL, 0) & ~O_NONBLOCK);
> return 0;
> }
>
> If I run "nonblock" in Midnight Commander in KDE's Konsole,
> screen redraw starts to work ~5 times slower. For example,
> Ctrl-O ("show/hide panels" in MC) takes ~0.5 sec to redraw.
> This persists after the program exist (which it
> does immediately as you see).
> Running "block" reverts things to normal.
>
> I mean: how can O_NONBLOCK _issued in a process which
> already exited_ have any effect whatsoever on MC or Konsole?
> They can't even know that it did it, right?
>
> Either I do not know something subtle about Unix or some sort
> of bug is at work.
Because they all share the same stdin file descriptor, therefore they
share the same file descriptor flags?
Phil.
next prev parent reply other threads:[~2007-01-30 3:48 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-01-27 20:52 O_NONBLOCK setting "leak" outside of a process?? Denis Vlasenko
2007-01-30 3:40 ` Philippe Troin [this message]
2007-02-01 23:00 ` Denis Vlasenko
2007-02-01 23:15 ` Philippe Troin
2007-02-02 12:10 ` Roland Kuhn
2007-02-02 13:48 ` Guillaume Chazarain
2007-02-02 15:04 ` Roland Kuhn
2007-02-02 18:59 ` Philippe Troin
2007-02-05 10:49 ` bert hubert
2007-02-04 0:55 ` David Schwartz
2007-02-04 1:22 ` Denis Vlasenko
2007-02-04 7:56 ` David Schwartz
2007-02-04 20:11 ` Michael Tokarev
2007-02-04 21:08 ` David Schwartz
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87bqkhuqpp.fsf@tantale.fifi.org \
--to=phil@fifi.org \
--cc=linux-kernel@vger.kernel.org \
--cc=vda.linux@googlemail.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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox