You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
481 B
18 lines
481 B
1 year ago
|
# fork solo funciona en unix/macos
|
||
|
import os
|
||
|
def padre():
|
||
|
while True:
|
||
|
newpid = os.fork()
|
||
|
if newpid == 0:
|
||
|
hijo()
|
||
|
else:
|
||
|
pids = (os.getpid(), newpid)
|
||
|
print("Padre: %d, Hijo: %d\n" % pids)
|
||
|
reply = input("Pulsa 's' si quieres crear un nuevo proceso")
|
||
|
if reply != 's':
|
||
|
break
|
||
|
|
||
|
def hijo():
|
||
|
print('\n>>>>>>>>>> Nuevo hijo creado con el pid %d a punto de finalizar<<<<<' % os.getpid())
|
||
|
os._exit(0)
|
||
|
padre()
|