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/web
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2006-05-26 23:17:55 +0400
committerZoltan Varga <vargaz@gmail.com>2006-05-26 23:17:55 +0400
commitbcaf92d6893a46455c9d1567ced48f09aaaabe07 (patch)
treefc9ea14efc829d4ee8231f17e6da4528e02a1f87 /web
parent72a35533e75d1fb5fc55a1211c6563205cd032d3 (diff)
2006-05-26 Zoltan Varga <vargaz@gmail.com>
* jit-debug: Fix two other places. svn path=/trunk/mono/; revision=61173
Diffstat (limited to 'web')
-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>