Author: lupus
Date: 2005-04-19 11:53:09 -0400 (Tue, 19 Apr 2005)
New Revision: 43266

Modified:
   trunk/mono/mono/io-layer/threads.c
Log:
Update thread_hash hash/equals functions to operate on plain ints.


Modified: trunk/mono/mono/io-layer/threads.c
===================================================================
--- trunk/mono/mono/io-layer/threads.c  2005-04-19 15:30:45 UTC (rev 43265)
+++ trunk/mono/mono/io-layer/threads.c  2005-04-19 15:53:09 UTC (rev 43266)
@@ -172,7 +172,7 @@
 
 static void thread_hash_init(void)
 {
-       thread_hash = g_hash_table_new(g_int_hash, g_int_equal);
+       thread_hash = g_hash_table_new (NULL, NULL);
 }
 
 /**

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

Reply via email to