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
path: root/data
diff options
context:
space:
mode:
authorBernhard Urban <bernhard.urban@xamarin.com>2017-11-16 20:55:01 +0300
committerBernhard Urban <bernhard.urban@xamarin.com>2017-11-17 01:27:51 +0300
commit1f4bd60284826e9d4ddac30caa6618d58cf80cfe (patch)
tree4337e2979ddc9307d63af4403dd2b6e2b16b682f /data
parent4d02be3abf7351cf19f8f7a7f8a160e057e266cf (diff)
[lldb] update interp main loop function name
Diffstat (limited to 'data')
-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 58321bd8175..162e30f2b6f 100644
--- a/data/lldb/monobt.py
+++ b/data/lldb/monobt.py
@@ -11,7 +11,7 @@ def print_frames(thread, num_frames, current_thread):
pc = str(frame.addr)
var = frame
function_name = frame.GetFunctionName()
- if function_name == "ves_exec_method_with_context":
+ if function_name == "interp_exec_method_full":
try:
s = 'frame->imethod->method'
klassname = frame.EvaluateExpression('(char*) ' + s + '->klass->name').summary[1:-1]