내 프로세스가 중단되었습니다. master
다음과 같습니다.
p=Popen(cmd, stdin=PIPE, stdout=PIPE)
for ....: # a few million
p.stdin.write(...)
p.stdin.close()
out = p.stdout.read()
p.stdout.close()
exitcode = p.wait()
child
다음과 같습니다.
l = list()
for line in sys.stdin:
l.append(line)
sys.stdout.write(str(len(l)))
strace -p PID_master
디스플레이가master
멈췄습니다wait4(PID_child,...)
.strate -p PID_child
디스플레이가child
멈췄습니다read(0,...)
.
어떻게 그럴 수 있습니까? !
close
내가 그랬는데 stdin
왜 아직도 child
읽고 있는 걸까? !
답변1
parent.py
from subprocess import Popen, PIPE
cmd = ["python", "child.py"]
p=Popen(cmd, stdin=PIPE, stdout=PIPE)
for i in range(1,100000):
p.stdin.write("hello\n")
p.stdin.close()
out = p.stdout.read()
p.stdout.close()
print(out)
exitcode = p.wait()
children.py
import sys
l = list()
for line in sys.stdin:
l.append(line)
sys.stdout.write(str(len(l)))
실행하세요:
$ python parent.py
99999
정상적으로 작동하는 것 같으니 문제는 다른 곳에 있는 것 같습니다.