Browse Source

Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <[email protected]>

	* icall.c: more signature fixes that used uint instead of int.

svn path=/trunk/mono/; revision=5159
Paolo Molaro 23 years ago
parent
commit
efff5abbcb
2 changed files with 8 additions and 4 deletions
  1. 4 0
      mono/metadata/ChangeLog
  2. 4 4
      mono/metadata/icall.c

+ 4 - 0
mono/metadata/ChangeLog

@@ -1,4 +1,8 @@
 
 
+Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <[email protected]>
+
+	* icall.c: more signature fixes that used uint instead of int.
+
 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <[email protected]>
 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <[email protected]>
 
 
 	* reflection.c: fixed signature of field refs.
 	* reflection.c: fixed signature of field refs.

+ 4 - 4
mono/metadata/icall.c

@@ -2581,14 +2581,14 @@ static gconstpointer icall_map [] = {
 	/*
 	/*
 	 * System.Threading.Interlocked
 	 * System.Threading.Interlocked
 	 */
 	 */
-	"System.Threading.Interlocked::Increment(uint&)", ves_icall_System_Threading_Interlocked_Increment_Int,
+	"System.Threading.Interlocked::Increment(int&)", ves_icall_System_Threading_Interlocked_Increment_Int,
 	"System.Threading.Interlocked::Increment(long&)", ves_icall_System_Threading_Interlocked_Increment_Long,
 	"System.Threading.Interlocked::Increment(long&)", ves_icall_System_Threading_Interlocked_Increment_Long,
-	"System.Threading.Interlocked::Decrement(uint&)", ves_icall_System_Threading_Interlocked_Decrement_Int,
+	"System.Threading.Interlocked::Decrement(int&)", ves_icall_System_Threading_Interlocked_Decrement_Int,
 	"System.Threading.Interlocked::Decrement(long&)", ves_icall_System_Threading_Interlocked_Decrement_Long,
 	"System.Threading.Interlocked::Decrement(long&)", ves_icall_System_Threading_Interlocked_Decrement_Long,
-	"System.Threading.Interlocked::CompareExchange(uint&,uint,uint)", ves_icall_System_Threading_Interlocked_CompareExchange_Int,
+	"System.Threading.Interlocked::CompareExchange(int&,int,int)", ves_icall_System_Threading_Interlocked_CompareExchange_Int,
 	"System.Threading.Interlocked::CompareExchange(object&,object,object)", ves_icall_System_Threading_Interlocked_CompareExchange_Object,
 	"System.Threading.Interlocked::CompareExchange(object&,object,object)", ves_icall_System_Threading_Interlocked_CompareExchange_Object,
 	"System.Threading.Interlocked::CompareExchange(single&,single,single)", ves_icall_System_Threading_Interlocked_CompareExchange_Single,
 	"System.Threading.Interlocked::CompareExchange(single&,single,single)", ves_icall_System_Threading_Interlocked_CompareExchange_Single,
-	"System.Threading.Interlocked::Exchange(uint&,uint)", ves_icall_System_Threading_Interlocked_Exchange_Int,
+	"System.Threading.Interlocked::Exchange(int&,int)", ves_icall_System_Threading_Interlocked_Exchange_Int,
 	"System.Threading.Interlocked::Exchange(object&,object)", ves_icall_System_Threading_Interlocked_Exchange_Object,
 	"System.Threading.Interlocked::Exchange(object&,object)", ves_icall_System_Threading_Interlocked_Exchange_Object,
 	"System.Threading.Interlocked::Exchange(single&,single)", ves_icall_System_Threading_Interlocked_Exchange_Single,
 	"System.Threading.Interlocked::Exchange(single&,single)", ves_icall_System_Threading_Interlocked_Exchange_Single,