Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data/lldb/monobt.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/lldb/monobt.py b/data/lldb/monobt.py
index 8b2a973b820..58321bd8175 100644
--- a/data/lldb/monobt.py
+++ b/data/lldb/monobt.py
@@ -13,7 +13,7 @@ def print_frames(thread, num_frames, current_thread):
function_name = frame.GetFunctionName()
if function_name == "ves_exec_method_with_context":
try:
- s = 'frame->runtime_method->method'
+ s = 'frame->imethod->method'
klassname = frame.EvaluateExpression('(char*) ' + s + '->klass->name').summary[1:-1]
methodname = frame.EvaluateExpression('(char*) ' + s + '->name').summary[1:-1]