mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-02 01:40:07 +00:00
90dd591393
mq_notify (present in POSIX by 1996) brings in references to pthread_barrier_init and pthread_barrier_wait (new in the 2001 edition of POSIX). This patch fixes this by making those functions into weak aliases of __pthread_barrier_*, exporting the __pthread_barrier_* names at version GLIBC_PRIVATE and using them in mq_notify. Tested for x86_64 and x86 (testsuite, and comparison of installed stripped shared libraries). Changes in addresses from dynamic symbol table / PLT changes render most comparisons not particularly useful, but when the addresses of subsequent code don't change there's no sign of unexpected changes there. This patch does not remove any linknamespace XFAILs because of other namespace issues remaining with mqueue.h functions. [BZ #18544] * nptl/pthread_barrier_init.c (pthread_barrier_init): Rename to __pthread_barrier_init and define as weak alias of __pthread_barrier_init. * sysdeps/sparc/nptl/pthread_barrier_init.c (pthread_barrier_init): Likewise. * nptl/pthread_barrier_wait.c (pthread_barrier_wait): Rename to __pthread_barrier_wait and define as weak alias of __pthread_barrier_wait. * sysdeps/sparc/nptl/pthread_barrier_wait.c (pthread_barrier_wait): Likewise. * sysdeps/sparc/sparc32/pthread_barrier_wait.c (pthread_barrier_wait): Likewise. * sysdeps/unix/sysv/linux/i386/i486/pthread_barrier_wait.S (pthread_barrier_wait): Likewise. * sysdeps/unix/sysv/linux/x86_64/pthread_barrier_wait.S (pthread_barrier_wait): Likewise. * nptl/Versions (libpthread): Export __pthread_barrier_init and __pthread_barrier_wait at version GLIBC_PRIVATE. * include/pthread.h (__pthread_barrier_init): Declare. (__pthread_barrier_wait): Likewise. * sysdeps/unix/sysv/linux/mq_notify.c (notification_function): Call __pthread_barrier_wait instead of pthread_barrier_wait. (helper_thread): Likewise. (init_mq_netlink): Call __pthread_barrier_init instead of pthread_barrier_init.
72 lines
2.2 KiB
C
72 lines
2.2 KiB
C
/* Copyright (C) 2002-2015 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
#include <errno.h>
|
|
#include "pthreadP.h"
|
|
#include <lowlevellock.h>
|
|
#include <kernel-features.h>
|
|
|
|
|
|
static const struct pthread_barrierattr default_barrierattr =
|
|
{
|
|
.pshared = PTHREAD_PROCESS_PRIVATE
|
|
};
|
|
|
|
|
|
int
|
|
__pthread_barrier_init (barrier, attr, count)
|
|
pthread_barrier_t *barrier;
|
|
const pthread_barrierattr_t *attr;
|
|
unsigned int count;
|
|
{
|
|
struct pthread_barrier *ibarrier;
|
|
|
|
if (__glibc_unlikely (count == 0))
|
|
return EINVAL;
|
|
|
|
const struct pthread_barrierattr *iattr
|
|
= (attr != NULL
|
|
? iattr = (struct pthread_barrierattr *) attr
|
|
: &default_barrierattr);
|
|
|
|
if (iattr->pshared != PTHREAD_PROCESS_PRIVATE
|
|
&& __builtin_expect (iattr->pshared != PTHREAD_PROCESS_SHARED, 0))
|
|
/* Invalid attribute. */
|
|
return EINVAL;
|
|
|
|
ibarrier = (struct pthread_barrier *) barrier;
|
|
|
|
/* Initialize the individual fields. */
|
|
ibarrier->lock = LLL_LOCK_INITIALIZER;
|
|
ibarrier->left = count;
|
|
ibarrier->init_count = count;
|
|
ibarrier->curr_event = 0;
|
|
|
|
#ifdef __ASSUME_PRIVATE_FUTEX
|
|
ibarrier->private = (iattr->pshared != PTHREAD_PROCESS_PRIVATE
|
|
? 0 : FUTEX_PRIVATE_FLAG);
|
|
#else
|
|
ibarrier->private = (iattr->pshared != PTHREAD_PROCESS_PRIVATE
|
|
? 0 : THREAD_GETMEM (THREAD_SELF,
|
|
header.private_futex));
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
weak_alias (__pthread_barrier_init, pthread_barrier_init)
|