diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-03-13 02:22:20 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-03-13 02:22:20 +0000 |
commit | 8bc79c12255c791bde6b1c9e6b6c094ff92a8925 (patch) | |
tree | 78a5a33c421c467883a3b0b20deebd09e5ae2c7b /bin/emerge | |
parent | Bug #309001 - Use signal(signal.SIGPIPE, signal.SIG_DFL) for quiet killing of (diff) | |
download | portage-multirepo-8bc79c12255c791bde6b1c9e6b6c094ff92a8925.tar.gz portage-multirepo-8bc79c12255c791bde6b1c9e6b6c094ff92a8925.tar.bz2 portage-multirepo-8bc79c12255c791bde6b1c9e6b6c094ff92a8925.zip |
Add references to bug #309001 in comments about SIGPIPE handling.
svn path=/main/trunk/; revision=15824
Diffstat (limited to 'bin/emerge')
-rwxr-xr-x | bin/emerge | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -17,6 +17,7 @@ try: signal.signal(signal.SIGINT, exithandler) signal.signal(signal.SIGTERM, exithandler) + # Quiet killing of subprocesses by SIGPIPE (see bug #309001). signal.signal(signal.SIGPIPE, signal.SIG_DFL) except KeyboardInterrupt: |