Author: atsushi
Date: 2007-10-04 01:46:13 -0400 (Thu, 04 Oct 2007)
New Revision: 86846

Modified:
   trunk/mono/mono/metadata/ChangeLog
   trunk/mono/mono/metadata/icall-def.h
   trunk/mono/mono/metadata/icall.c
Log:
2007-10-04  Atsushi Enomoto  <[EMAIL PROTECTED]>

        * icall-def.h, icall.c : get_bundled_machine_config() is now the
          common function used by both DefaultConfig in System.dll and
          InternalConfigurationHost in System.Configuration.dll.



Modified: trunk/mono/mono/metadata/ChangeLog
===================================================================
--- trunk/mono/mono/metadata/ChangeLog  2007-10-04 04:48:43 UTC (rev 86845)
+++ trunk/mono/mono/metadata/ChangeLog  2007-10-04 05:46:13 UTC (rev 86846)
@@ -1,4 +1,9 @@
+2007-10-04  Atsushi Enomoto  <[EMAIL PROTECTED]>
 
+       * icall-def.h, icall.c : get_bundled_machine_config() is now the
+         common function used by both DefaultConfig in System.dll and
+         InternalConfigurationHost in System.Configuration.dll.
+
 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <[EMAIL PROTECTED]>
 
        * class.c: automatically add to vectors only a few essential explicit

Modified: trunk/mono/mono/metadata/icall-def.h
===================================================================
--- trunk/mono/mono/metadata/icall-def.h        2007-10-04 04:48:43 UTC (rev 
86845)
+++ trunk/mono/mono/metadata/icall-def.h        2007-10-04 05:46:13 UTC (rev 
86846)
@@ -111,9 +111,13 @@
 ICALL(CHAR_1, "GetDataTablePointers", 
ves_icall_System_Char_GetDataTablePointers)
 
 ICALL_TYPE(DEFAULTC, "System.Configuration.DefaultConfig", DEFAULTC_1)
-ICALL(DEFAULTC_1, "get_bundled_machine_config", 
ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config)
+ICALL(DEFAULTC_1, "get_bundled_machine_config", get_bundled_machine_config)
 ICALL(DEFAULTC_2, "get_machine_config_path", 
ves_icall_System_Configuration_DefaultConfig_get_machine_config_path)
 
+/* Note that the below icall shares the same function as DefaultConfig uses */
+ICALL_TYPE(INTCFGHOST, "System.Configuration.InternalConfigurationHost", 
INTCFGHOST_1)
+ICALL(INTCFGHOST_1, "get_bundled_machine_config", get_bundled_machine_config)
+
 ICALL_TYPE(CONSOLE, "System.ConsoleDriver", CONSOLE_1)
 ICALL(CONSOLE_1, "GetTtySize", ves_icall_System_ConsoleDriver_GetTtySize )
 ICALL(CONSOLE_2, "InternalKeyAvailable", 
ves_icall_System_ConsoleDriver_InternalKeyAvailable )

Modified: trunk/mono/mono/metadata/icall.c
===================================================================
--- trunk/mono/mono/metadata/icall.c    2007-10-04 04:48:43 UTC (rev 86845)
+++ trunk/mono/mono/metadata/icall.c    2007-10-04 05:46:13 UTC (rev 86846)
@@ -6257,7 +6257,7 @@
 }
 
 static MonoString *
-ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config (void)
+get_bundled_machine_config (void)
 {
        const gchar *machine_config;
 

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to