SIGCHLD is a more portable name than SIGCLD. (OSX has no SIGCLD)

This commit is contained in:
Gregory P. Smith 2010-12-14 18:18:49 +00:00
parent ec07331eea
commit 31d04f2183
1 changed files with 1 additions and 1 deletions

View File

@ -2,5 +2,5 @@ import signal, subprocess, sys
# On Linux this causes os.waitpid to fail with OSError as the OS has already # On Linux this causes os.waitpid to fail with OSError as the OS has already
# reaped our child process. The wait() passing the OSError on to the caller # reaped our child process. The wait() passing the OSError on to the caller
# and causing us to exit with an error is what we are testing against. # and causing us to exit with an error is what we are testing against.
signal.signal(signal.SIGCLD, signal.SIG_IGN) signal.signal(signal.SIGCHLD, signal.SIG_IGN)
subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait() subprocess.Popen([sys.executable, '-c', 'print("albatross")']).wait()