使用idapython线程

2024-09-27 02:17:38 发布

您现在位置:Python中文网/ 问答频道 /正文

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

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

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

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

我能做什么?在


Tags: run代码import程序插件newdef单词

热门问题