我正在用 idapython 为 IDA 编写一个插件。当我尝试使用线程时,IDA 程序失败。
例如,当我尝试运行代码时:
import thread
def run():
print "start thread"
print "start"
thread.start_new_thread(run, ())
print "end"
在 IDA python 控制台中打印出单词“start”,然后 IDA 失败。
我能做些什么?
尝试升级您的 IDA / IDAPython。使用 IDA 6.1 和它附带的 IDAPython,上面的代码对我有用。
也就是说,在这个版本中,你真的不能从多个 python 线程访问数据库。有关详细信息,请参阅idaapi.execute_sync。