* gthr-posix.h (__gthread_active_ptr): Cast function pointer
authorljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 30 May 2001 22:38:43 +0000 (22:38 +0000)
committerljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 30 May 2001 22:38:43 +0000 (22:38 +0000)
to target type to allow ISO C++ compiler to accept it.
* gthr-dce.h (__gthread_active_ptr): Likewise.
* gthr-solaris.h (__gthread_active_ptr): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42725 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/gthr-dce.h
gcc/gthr-posix.h
gcc/gthr-solaris.h

index 30e91df..464d625 100644 (file)
@@ -1,3 +1,11 @@
+2001-05-30  Loren J. Rittle  <ljrittle@acm.org>
+           John David Anglin  <dave@hiauly1.hia.nrc.ca>
+
+       * gthr-posix.h (__gthread_active_ptr): Cast function pointer
+       to target type to allow ISO C++ compiler to accept it.
+       * gthr-dce.h (__gthread_active_ptr): Likewise.
+       * gthr-solaris.h (__gthread_active_ptr): Likewise.
+
 2001-05-30  Neil Booth  <neil@daikokuya.demon.co.uk>
 
        * cpplex.c (_cpp_lex_token): Revert patch of 16 May 2001
index ce77bf1..96660a3 100644 (file)
@@ -79,7 +79,7 @@ typedef pthread_mutex_t __gthread_mutex_t;
 #pragma weak pthread_yield
 #endif
 
-static void *__gthread_active_ptr = &pthread_create;
+static void *__gthread_active_ptr = (void *) &pthread_create;
 
 static inline int
 __gthread_active_p (void)
index 7ffb0a0..b5a4637 100644 (file)
@@ -75,7 +75,7 @@ typedef pthread_mutex_t __gthread_mutex_t;
 #pragma weak pthread_setschedparam
 #endif
 
-static void *__gthread_active_ptr = &pthread_create;
+static void *__gthread_active_ptr = (void *) &pthread_create;
 
 static inline int
 __gthread_active_p (void)
index 1499610..6955753 100644 (file)
@@ -81,7 +81,7 @@ typedef mutex_t __gthread_mutex_t;
 /* This will not actually work in Solaris 2.5, since libc contains
    dummy symbols of all thr_* routines. */
 
-static void *__gthread_active_ptr = &thr_create;
+static void *__gthread_active_ptr = (void *) &thr_create;
 
 static inline int
 __gthread_active_p (void)