mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
Unixware 7 support by Billy G. Allie (SF patch 413011)
This commit is contained in:
parent
11e89c72c1
commit
2242f2fbd0
15 changed files with 2406 additions and 508 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue