When I use lptrace, i just simply run python lptrace -p 21640. But this command just hang forever.
When i add some print log in lptrace like this
`
signal.signal(signal.SIGINT, sigint_handler)
print("bbbbbbbbbb")
with open(fifo_name) as fd:
print("ssssssssssss")
while True:
print("aaaaaaaa")
data = fd.read()
print(111111111111)
if data != '':
print data
print("mmmmmmmm")
`
it will only print "bbbbbbb", but not any other logs. Did i miss anything
When I use lptrace, i just simply run
python lptrace -p 21640. But this command just hang forever.When i add some print log in lptrace like this
`
signal.signal(signal.SIGINT, sigint_handler)
`
it will only print "bbbbbbb", but not any other logs. Did i miss anything