lptrace icon indicating copy to clipboard operation
lptrace copied to clipboard

Lptrace just hang

Open demonguy opened this issue 7 years ago • 2 comments

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

demonguy avatar Oct 12 '17 02:10 demonguy

BTW, it will cause process "21640" die. Actually 21640 is just listening socket, but after i running this command, my process just die, and cannot listen socket anymore

demonguy avatar Oct 12 '17 03:10 demonguy

it might be that you don't have gdb installed. this is unfortunately the behavior in that case.

jseakle avatar Jul 08 '21 18:07 jseakle