]> granicus.if.org Git - gc/commitdiff
2005-10-11 Zoltan Varga <vargaz@gmail.com>
authorZoltan Varga <vargaz@gmail.com>
Tue, 11 Oct 2005 17:33:27 +0000 (17:33 +0000)
committerguest <ivmai@mail.ru>
Fri, 29 Jul 2011 11:26:12 +0000 (15:26 +0400)
* pthread_support.c (GC_thread_deregister_foreign): Make this return
void instead of void*.

svn path=/trunk/mono/; revision=51613

ChangeLog
include/private/pthread_support.h
pthread_support.c

index 2a717e7eed980a3ef35ca5334520095f5a3689f3..d32dd59e572979480c8a9d849bd1e520f72fe6cb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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-09-29  Raja R Harinath  <harinath@gmail.com>
 
        * configure.host: Fix syntax error.
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 78505cb784aa080b03e713be62f6589f5f0cb2e8..6ae56c4711250887a27bd9c0638126112b5ec59b 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 ); */