On Fri, Jul 26, 2013 at 03:10:43PM +0900, MORITA Kazutaka wrote: > This prevents the tools from being stopped when they write data to a > closed connection in the other side. > > Reviewed-by: Paolo Bonzini <pbonz...@redhat.com> > Signed-off-by: MORITA Kazutaka <morita.kazut...@lab.ntt.co.jp> > --- > qemu-img.c | 4 ++++ > qemu-io.c | 4 ++++ > 2 files changed, 8 insertions(+) > > diff --git a/qemu-img.c b/qemu-img.c > index c55ca5c..919d464 100644 > --- a/qemu-img.c > +++ b/qemu-img.c > @@ -2319,6 +2319,10 @@ int main(int argc, char **argv) > const img_cmd_t *cmd; > const char *cmdname; > > +#ifdef CONFIG_POSIX > + signal(SIGPIPE, SIG_IGN); > +#endif
Reusing os_setup_early_signal_handling() would be messy, this seems fine for now. Reviewed-by: Stefan Hajnoczi <stefa...@redhat.com>