gcc7/gcc-4.6.1-C-comment.patch
2012-08-07 09:57:49 +00:00

23 lines
767 B
Diff

--- gcc-4.6.1/gcc/gthr-posix.h.orig 2011-09-07 11:03:55.245800561 -0300
+++ gcc-4.6.1/gcc/gthr-posix.h 2011-09-07 11:04:27.388960108 -0300
@@ -239,16 +239,15 @@ __gthread_active_p (void)
static inline int
__gthread_active_p (void)
{
- static void *const __gthread_active_ptr
- = __extension__ (void *) &__gthrw_(
/* Android's C library does not provide pthread_cancel, check for
`pthread_create' instead. */
#ifndef __BIONIC__
- pthread_cancel
+ static void *const __gthread_active_ptr
+ = __extension__ (void *) &__gthrw_(pthread_cancel);
#else
- pthread_create
+ static void *const __gthread_active_ptr
+ = __extension__ (void *) &__gthrw_(pthread_create);
#endif
- );
return __gthread_active_ptr != 0;
}