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:
-rwxr-xr-xweb/ChangeLog2
-rw-r--r--web/jit-debug4
2 files changed, 4 insertions, 2 deletions
diff --git a/web/ChangeLog b/web/ChangeLog
index f32d38345ac..f5d7687643b 100755
--- a/web/ChangeLog
+++ b/web/ChangeLog
@@ -1,5 +1,7 @@
2006-05-26 Zoltan Varga <vargaz@gmail.com>
+ * jit-debug: Fix two other places.
+
* jit-debug: print_method_from_ip -> mono_print_method_from_ip (). Fixes
#78514.
diff --git a/web/jit-debug b/web/jit-debug
index fa2df77a8e9..66b4411ff07 100644
--- a/web/jit-debug
+++ b/web/jit-debug
@@ -33,10 +33,10 @@
You can now use:
<pre>
-(gdb) p print_method_from_ip (0x0817f490)
+(gdb) p mono_print_method_from_ip (0x0817f490)
IP 0x817f490 at offset 0x28 of method (wrapper managed-to-native) System.String:GetHashCode () (0x817f468 0x817f4a4)
$1 = void
-(gdb) p print_method_from_ip (0x0817f42a)
+(gdb) p mono_print_method_from_ip (0x0817f42a)
IP 0x817f42a at offset 0x52 of method System.Collections.Hashtable:GetHash (object) (0x817f3d8 0x817f43b)
$2 = void
</pre>