idapythonによるIDAのプラグインを書いています。スレッドを使用しようとすると、IDAプログラムが失敗します。
たとえば、コードを実行しようとすると、次のようになります。
import thread
def run():
print "start thread"
print "start"
thread.start_new_thread(run, ())
print "end"
「start」という単語がIDApythonコンソールに出力された後、IDAは失敗します。
私に何ができる?