- 论坛徽章:
- 0
|
不知哪里出了问题,感觉程序中线程readfifo一会能从管道中读到信息,一会读不到,不知什么原因,该怎么修改呢?
写进程writefifo在退出后,读线程readfifo应该还是可读到的,可现在很不稳定,请大侠指教,谢谢。
import os,multiprocessing, thread, threading,time
def readfifo():
fd = os.open('testpipe',os.O_NONBLOCK|os.O_RDWR)
while True:
time.sleep(1)
try:
mess = os.read(fd,20)
if mess:
print mess
except Exception,e:
pass
def writefifo():
fd = os.open('testpipe',os.O_NONBLOCK|os.O_RDWR)
os.write(fd,"haha")
# time.sleep(5)
# os.close(fd)
# while True:
# #time.sleep(20)
# continue
pipe = 'testpipe'
if os.path.exists(pipe):
os.unlink(pipe)
os.mkfifo(pipe)
p = multiprocessing.Process( target=writefifo, args=() )
p.start()
t = threading.Thread( target=readfifo, args=(), name='readfifo' )
t.start()
while True:
time.sleep(10)
# os._exit(-1)
|
|