I'm using IDA 6.0 with IDAPython 1.4.3, and I need to create thread from the .py script.
My code looks like this:
So, anybody knows some working solution, to run background thread from python code in IDA?
My code looks like this:
Code: Select all
But it doesn't work properly: created thread freezes immediately after the script execution.import time, thread
def test_proc(msg):
while True:
print msg
time.sleep(1)
thread.start_new_thread(test_proc, ("Test", ))
So, anybody knows some working solution, to run background thread from python code in IDA?