Unixware 7 support by Billy G. Allie (SF patch 413011)

This commit is contained in:
Guido van Rossum 2001-04-11 20:58:20 +00:00
parent 11e89c72c1
commit 2242f2fbd0
15 changed files with 2406 additions and 508 deletions

View file

@ -48,7 +48,10 @@ def main():
prefork_lives = alive.copy()
cpid = os.fork()
if sys.platform in ['unixware7']:
cpid = os.fork1()
else:
cpid = os.fork()
if cpid == 0:
# Child