2005-10-24 Miguel de Icaza <miguel@novell.com>
authorMiguel de Icaza <miguel@gnome.org>
Tue, 25 Oct 2005 22:21:02 +0000 (22:21 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Tue, 25 Oct 2005 22:21:02 +0000 (22:21 -0000)
* mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
we expose publicly, this returns the string.

svn path=/trunk/mono/; revision=52212

mono/mini/ChangeLog
mono/mini/mini.c

index 5757bdaad7f8095d46abca923855c3b71e14ec7f..efd7152746eb59546ac72fbd2f03abcc92b2de30 100644 (file)
@@ -1,3 +1,8 @@
+2005-10-24  Miguel de Icaza  <miguel@novell.com>
+
+       * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
+       we expose publicly, this returns the string.
+
 2005-10-22  Zoltan Varga  <vargaz@freemail.hu>
 
        * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
index a7f301a1eb706b574361cd845ba07df6581c7f57..92d038fed77efb041cb1891245ca1ec343dea5dc 100644 (file)
@@ -184,6 +184,12 @@ get_method_from_ip (void *ip)
        return res;
 }
 
+G_GNUC_UNUSED char *
+mono_pmip (void *ip)
+{
+       return get_method_from_ip (ip);
+}
+
 /* debug function */
 G_GNUC_UNUSED static void
 print_method_from_ip (void *ip)