in reply to Detect whether a writeable filehandle has closed?
Writing to a closed pipe should trigger a SIGPIPE but it requires to write something to it first. A child that died for some reason should also trigger a SIGCHLD – perhaps you could detect that and take it into account prior to sending more data? I would write a wrapper that replaces print with a-priori checks (i.e. SIGCHLD sets a flag asynchonously) and post-checks (SIGPIPE)... at least under Linux. Don't know if theses assumptions are valid under Windows.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Detect whether a writeable filehandle has closed?
by Fletch (Bishop) on Jan 13, 2021 at 20:10 UTC | |
by GrandFather (Saint) on Jan 13, 2021 at 20:54 UTC | |
|
Re^2: Detect whether a writeable filehandle has closed?
by jdporter (Paladin) on Jan 13, 2021 at 18:59 UTC |