Backport\n2005-10-11 Zoltan Varga <vargaz@gmail.com>
authorMiguel de Icaza <miguel@gnome.org>
Tue, 11 Oct 2005 18:43:08 +0000 (18:43 -0000)
committerMiguel de Icaza <miguel@gnome.org>
Tue, 11 Oct 2005 18:43:08 +0000 (18:43 -0000)
* pthread_support.c (GC_thread_deregister_foreign): Make this return
void instead of void*.

svn path=/branches/mono-1-1-9/mono/; revision=51621

libgc/ChangeLog
libgc/include/private/pthread_support.h
libgc/pthread_support.c

index 9e82f0ffc5c7b37722a9ff7c9eb9bf5e0bb5f8a7..c395328d0bbaafdbd4d7aa29c695c20f1583e914 100644 (file)
@@ -1,3 +1,8 @@
+2005-10-11  Zoltan Varga  <vargaz@gmail.com>
+       * pthread_support.c (GC_thread_deregister_foreign): Make this return
+       void instead of void*.
+       
 2005-08-24  Zoltan Varga  <vargaz@gmail.com>
 
        * win32_threads.c: If GC_INSIDE_DLL is defined, define the DllMain function for automatic registration
index c00ec51fa7bb98297a543d4d46b733a8f3b36284..8a3168da4cadef100cbda3214d9d48959d409197 100644 (file)
@@ -92,7 +92,7 @@ extern GC_bool GC_thr_initialized;
 
 GC_thread GC_lookup_thread(pthread_t id);
 
-void *GC_thread_deregister_foreign (void *data);
+void GC_thread_deregister_foreign (void *data);
 
 void GC_stop_init();
 
index 24d81ee5d52130577c06a81e9f05b35f3cca4f47..9def3e117cb6c954660de365d52b014ba1c35b55 100644 (file)
@@ -223,7 +223,7 @@ static ptr_t size_zero_object = (ptr_t)(&size_zero_object);
 
 void GC_delete_thread(pthread_t id);
 
-void *GC_thread_deregister_foreign (void *data)
+void GC_thread_deregister_foreign (void *data)
 {
     GC_thread me = (GC_thread)data;
  /*   GC_fprintf1( "\n\n\n\n --- Deregister %x ---\n\n\n\n\n", me->flags ); */