mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Force building with -fno-common
As a result, is not necessary to specify __attribute__ ((nocommon)) on individual definitions. GCC 10 defaults to -fno-common on all architectures except ARC, but this change is compatible with older GCC versions and ARC, too. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
This commit is contained in:
@ -107,12 +107,11 @@ timer_helper_thread (void *arg)
|
||||
|
||||
|
||||
/* Control variable for helper thread creation. */
|
||||
pthread_once_t __timer_helper_once __attribute__ ((nocommon))
|
||||
= PTHREAD_ONCE_INIT;
|
||||
pthread_once_t __timer_helper_once = PTHREAD_ONCE_INIT;
|
||||
|
||||
|
||||
/* TID of the helper thread. */
|
||||
pid_t __timer_helper_tid __attribute__ ((nocommon));
|
||||
pid_t __timer_helper_tid;
|
||||
|
||||
|
||||
/* Reset variables so that after a fork a new helper thread gets started. */
|
||||
|
Reference in New Issue
Block a user