Преглед изворни кода

2007-04-10 Zoltan Varga <[email protected]>

	* aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.

svn path=/trunk/mono/; revision=75572
Zoltan Varga пре 19 година
родитељ
комит
c3a54a70ad
2 измењених фајлова са 11 додато и 1 уклоњено
  1. 4 0
      mono/mini/ChangeLog
  2. 7 1
      mono/mini/aot-runtime.c

+ 4 - 0
mono/mini/ChangeLog

@@ -1,3 +1,7 @@
+2007-04-10  Zoltan Varga  <[email protected]>
+
+	* aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
+
 2007-04-05  Zoltan Varga  <[email protected]>
 
 	* aot-runtime.c: Fix disabling of AOT. Fixes #81316.

+ 7 - 1
mono/mini/aot-runtime.c

@@ -1888,7 +1888,7 @@ mono_aot_handle_pagefault (void *ptr)
 }
 
 /*
- * aot_dyn_resolve:
+ * mono_aot_plt_resolve:
  *
  *   This function is called by the entries in the PLT to resolve the actual method that
  * needs to be called. It returns a trampoline to the method and patches the PLT entry.
@@ -2088,4 +2088,10 @@ mono_aot_get_plt_entry (guint8 *code)
 	return NULL;
 }
 
+gpointer
+mono_aot_plt_resolve (gpointer aot_module, guint32 plt_info_offset, guint8 *code)
+{
+	return NULL;
+}
+
 #endif