diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-03-10 11:13:38 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-03-10 11:13:38 -0800 |
commit | fbef03d6ab6b9ee23ba1cf895f47314fe4308d2c (patch) | |
tree | 7ad0cc5376f8aedca61433638f328a188439331c /run-command.h | |
parent | 2d5ff66c134681d846e5102a9a62ec99c2178fe1 (diff) | |
parent | 43f3afc6bc6b79715ea46aaf341683cbba6ee965 (diff) | |
download | git-fbef03d6ab6b9ee23ba1cf895f47314fe4308d2c.tar.gz |
Merge branch 'jk/epipe-in-async' into maint
Handling of errors while writing into our internal asynchronous
process has been made more robust, which reduces flakiness in our
tests.
* jk/epipe-in-async:
t5504: handle expected output from SIGPIPE death
test_must_fail: report number of unexpected signal
fetch-pack: ignore SIGPIPE in sideband demuxer
write_or_die: handle EPIPE in async threads
Diffstat (limited to 'run-command.h')
-rw-r--r-- | run-command.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/run-command.h b/run-command.h index 12bb26c2a6..c0969c7695 100644 --- a/run-command.h +++ b/run-command.h @@ -121,5 +121,6 @@ struct async { int start_async(struct async *async); int finish_async(struct async *async); int in_async(void); +void NORETURN async_exit(int code); #endif |