This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: bash pipeline exit code - possible race condition?


> >>I've noticed a strange problem with bash pipelines in Cygwin that
> >>might indicate some sort of race condition. I cannot reproduce the
> >>problem on a Linux system, but it seems easy to reproduce in
> Cygwin.
> >
> > This doesn't appear to be a cygwin problem. ÂI get occasional
> errors
> > on linux as well.
> 
> I tried to reproduce on Linux but without success - did you simply
> run
> my script or perhaps something else? Do you see error "141" as well?

Status 141 is from SIGPIPE.  Basically, it happens when the read end of the
pipe exits before the writer.  It is not specific to cygwin, but may occur
more frequently on cygwin since cygwin has different scheduling than
Linux.  It is not an error in the OS - if you are going to worry about
the exit status of all processes in a pipeline, then you must be prepared
to deal with the earlier processes ending abruptly because the later
processes aren't interested in any more data.  There's nothing we can
do to change this race, and complaining to the bash folks won't change
it either.  About the only thing you could do by complaining to the bash
folks is to get another shell option that ignores sigpipe failures when
you are paying attention to all statuses within a pipeline, rather than
the normal behavior of just the last status.

-- 
Eric Blake

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]