3

我正在用 idapython 为 IDA 编写一个插件。当我尝试使用线程时,IDA 程序失败。

例如,当我尝试运行代码时:

import thread  
def run():  
    print "start thread"  
print "start"  
thread.start_new_thread(run, ())  
print "end"

在 IDA python 控制台中打印出单词“start”,然后 IDA 失败。

我能做些什么?

4

1 回答 1

3

尝试升级您的 IDA / IDAPython。使用 IDA 6.1 和它附带的 IDAPython,上面的代码对我有用。

也就是说,在这个版本中,你真的不能从多个 python 线程访问数据库。有关详细信息,请参阅idaapi.execute_sync

于 2014-04-10T18:39:44.370 回答