From: Enrico Granata Date: Tue, 22 Jan 2013 02:32:56 +0000 (+0000) Subject: lldb.thread is not to be used anymore X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c50b44801c53b6ba6b204841ad6e7dfd9bd612a2;p=platform%2Fupstream%2Fllvm.git lldb.thread is not to be used anymore llvm-svn: 173119 --- diff --git a/lldb/test/functionalities/command_script/mysto.py b/lldb/test/functionalities/command_script/mysto.py index 4ad3d42..7191914 100644 --- a/lldb/test/functionalities/command_script/mysto.py +++ b/lldb/test/functionalities/command_script/mysto.py @@ -11,7 +11,7 @@ def StepOver(debugger, args, result, dict): print type(arg_split) count = int(arg_split[0]) for i in range(0,count): - lldb.thread.StepOver(lldb.eOnlyThisThread) + debugger.GetSelectedTarget().GetProcess().GetSelectedThread().StepOver(lldb.eOnlyThisThread) print "step<%d>"%i def __lldb_init_module(debugger, session_dict):