commit
3616bee593
@ -0,0 +1,8 @@
|
|||||||
|
# Ejercicio PS1 Python
|
||||||
|
|
||||||
|
~~~
|
||||||
|
Padre: 23154, Hijo: 23155
|
||||||
|
|
||||||
|
Pulsa 's' si quieres crear un nuevo proceso
|
||||||
|
>>>>>>>>>> Nuevo hijo creado con el pid 23155 a punto de finalizar<<<<<
|
||||||
|
~~~
|
@ -0,0 +1,21 @@
|
|||||||
|
# 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()
|
Loading…
Reference in new issue