diff options
author | marius <marius@FreeBSD.org> | 2008-04-21 20:40:42 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2008-04-21 20:40:42 +0000 |
commit | 9e0f3cc19c9df1594c9cc36cfd8fddc83c52ad12 (patch) | |
tree | 02bde0ed87a57fad6c1e1145ec70141c76f722a3 /contrib/gcc/gthr-posix.h | |
parent | 436a93024264937812e640ef90fafffe1587c715 (diff) | |
download | FreeBSD-src-9e0f3cc19c9df1594c9cc36cfd8fddc83c52ad12.zip FreeBSD-src-9e0f3cc19c9df1594c9cc36cfd8fddc83c52ad12.tar.gz |
* gthr-posix.h (__gthread_active_p): Use the Solaris implementation
for FreeBSD as well.
This is the fix for __gthread_active_p() returning false positives
which was committed as rev. 1.1.1.8.2.1 to RELENG_7 but now looped
back to the vendor branch via the GCC repository and relicensed to
be GPLv2 by me.
Thanks go to gerald@ for getting the fix approved upstream and for
committing to the GCC repository.
PR: 119289
Approved by: core
Diffstat (limited to 'contrib/gcc/gthr-posix.h')
-rw-r--r-- | contrib/gcc/gthr-posix.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/contrib/gcc/gthr-posix.h b/contrib/gcc/gthr-posix.h index 47d38a3..fd1ce22 100644 --- a/contrib/gcc/gthr-posix.h +++ b/contrib/gcc/gthr-posix.h @@ -152,9 +152,12 @@ __gthrw(pthread_setschedparam) it is passed so we cannot pretend that the interface is active if -pthreads is not specified. On Solaris 2.5.1, the interface is not exposed at all so we need to play the usual game with weak symbols. On Solaris 10 and up, a - working interface is always exposed. */ + working interface is always exposed. On FreeBSD 6 and later, libc also + exposes a dummy POSIX threads interface, similar to what Solaris 2.6 up + to 9 does. FreeBSD >= 700014 even provides a pthread_cancel stub in libc, + which means the alternate __gthread_active_p below cannot be used there. */ -#if defined(__sun) && defined(__svr4__) +#if defined(__FreeBSD__) || (defined(__sun) && defined(__svr4__)) static volatile int __gthread_active = -1; @@ -197,7 +200,7 @@ __gthread_active_p (void) return __gthread_active_latest_value != 0; } -#else /* not Solaris */ +#else /* neither FreeBSD nor Solaris */ static inline int __gthread_active_p (void) @@ -207,7 +210,7 @@ __gthread_active_p (void) return __gthread_active_ptr != 0; } -#endif /* Solaris */ +#endif /* FreeBSD or Solaris */ #else /* not SUPPORTS_WEAK */ |