BIND 10 master, updated. 71032a09e3cc7e34133378b426ad83d13ca3e0ac [1673] Remove WIFCONTINUED and WIFSTOPPED checks
BIND 10 source code commits
bind10-changes at lists.isc.org
Thu Mar 8 08:00:41 UTC 2012
The branch, master has been updated
via 71032a09e3cc7e34133378b426ad83d13ca3e0ac (commit)
from 42991798446e79e8e5e60641430d3d5a8cc0c1bd (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 71032a09e3cc7e34133378b426ad83d13ca3e0ac
Author: Mukund Sivaraman <muks at isc.org>
Date: Thu Mar 8 13:30:29 2012 +0530
[1673] Remove WIFCONTINUED and WIFSTOPPED checks
These are unnecessary and don't seem to be available on platforms like
NetBSD.
-----------------------------------------------------------------------
Summary of changes:
src/lib/python/isc/bind10/component.py | 6 ------
1 files changed, 0 insertions(+), 6 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/python/isc/bind10/component.py b/src/lib/python/isc/bind10/component.py
index b854743..da2730c 100644
--- a/src/lib/python/isc/bind10/component.py
+++ b/src/lib/python/isc/bind10/component.py
@@ -220,12 +220,6 @@ class BaseComponent:
if exit_code is not None:
if os.WIFEXITED(exit_code):
exit_str = "process exited normally with exit status %d" % (exit_code)
- elif os.WIFCONTINUED(exit_code):
- exit_str = "process continued with exit status %d" % (exit_code)
- elif os.WIFSTOPPED(exit_code):
- sig = os.WSTOPSIG(exit_code)
- signame = get_signame(sig)
- exit_str = "process stopped with exit status %d (killed by signal %d: %s)" % (exit_code, sig, signame)
elif os.WIFSIGNALED(exit_code):
sig = os.WTERMSIG(exit_code)
signame = get_signame(sig)
More information about the bind10-changes
mailing list