2024-01-01 18:12:26 +00:00
|
|
|
/* Copyright (C) 2006-2024 Free Software Foundation, Inc.
|
2006-08-03 07:54:18 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
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
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2006-08-03 07:54:18 +00:00
|
|
|
|
|
|
|
/* We define a special synchronization primitive for AIO. POSIX
|
|
|
|
conditional variables would be ideal but the pthread_cond_*wait
|
|
|
|
operations do not return on EINTR. This is a requirement for
|
|
|
|
correct aio_suspend and lio_listio implementations. */
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <signal.h>
|
2021-06-22 07:50:27 +00:00
|
|
|
#include <pthreadP.h>
|
2014-12-04 13:12:23 +00:00
|
|
|
#include <futex-internal.h>
|
2006-08-03 07:54:18 +00:00
|
|
|
|
|
|
|
#define DONT_NEED_GAI_MISC_COND 1
|
|
|
|
|
|
|
|
#define GAI_MISC_NOTIFY(waitlist) \
|
|
|
|
do { \
|
2006-09-05 15:33:13 +00:00
|
|
|
if (*waitlist->counterp > 0 && --*waitlist->counterp == 0) \
|
2014-12-04 13:12:23 +00:00
|
|
|
futex_wake ((unsigned int *) waitlist->counterp, 1, FUTEX_PRIVATE); \
|
2006-08-03 07:54:18 +00:00
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define GAI_MISC_WAIT(result, futex, timeout, cancel) \
|
|
|
|
do { \
|
2015-06-25 00:58:12 +00:00
|
|
|
volatile unsigned int *futexaddr = &futex; \
|
|
|
|
unsigned int oldval = futex; \
|
2006-08-03 07:54:18 +00:00
|
|
|
\
|
|
|
|
if (oldval != 0) \
|
|
|
|
{ \
|
2021-07-02 09:45:00 +00:00
|
|
|
__pthread_mutex_unlock (&__gai_requests_mutex); \
|
2006-08-03 07:54:18 +00:00
|
|
|
\
|
|
|
|
int status; \
|
|
|
|
do \
|
|
|
|
{ \
|
2018-05-10 20:24:56 +00:00
|
|
|
if (cancel) \
|
2020-11-30 13:33:12 +00:00
|
|
|
status = __futex_abstimed_wait_cancelable64 ( \
|
|
|
|
(unsigned int *) futexaddr, oldval, CLOCK_MONOTONIC, timeout, \
|
|
|
|
FUTEX_PRIVATE); \
|
2018-05-10 20:24:56 +00:00
|
|
|
else \
|
2020-11-30 13:33:12 +00:00
|
|
|
status = __futex_abstimed_wait64 ((unsigned int *) futexaddr, \
|
|
|
|
oldval, CLOCK_REALTIME, timeout, FUTEX_PRIVATE); \
|
2014-12-04 13:12:23 +00:00
|
|
|
if (status != EAGAIN) \
|
2006-08-03 07:54:18 +00:00
|
|
|
break; \
|
|
|
|
\
|
|
|
|
oldval = *futexaddr; \
|
|
|
|
} \
|
|
|
|
while (oldval != 0); \
|
|
|
|
\
|
2014-12-04 13:12:23 +00:00
|
|
|
if (status == EINTR) \
|
2006-08-03 07:54:18 +00:00
|
|
|
result = EINTR; \
|
2014-12-04 13:12:23 +00:00
|
|
|
else if (status == ETIMEDOUT) \
|
2006-08-03 07:54:18 +00:00
|
|
|
result = EAGAIN; \
|
2020-11-30 13:33:12 +00:00
|
|
|
else if (status == EOVERFLOW) \
|
|
|
|
result = EOVERFLOW; \
|
2006-08-03 07:54:18 +00:00
|
|
|
else \
|
2014-12-04 13:12:23 +00:00
|
|
|
assert (status == 0 || status == EAGAIN); \
|
2006-08-03 07:54:18 +00:00
|
|
|
\
|
2021-07-02 09:45:00 +00:00
|
|
|
__pthread_mutex_lock (&__gai_requests_mutex); \
|
2006-08-03 07:54:18 +00:00
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
|
|
#define gai_start_notify_thread __gai_start_notify_thread
|
|
|
|
#define gai_create_helper_thread __gai_create_helper_thread
|
|
|
|
|
|
|
|
extern inline void
|
|
|
|
__gai_start_notify_thread (void)
|
|
|
|
{
|
|
|
|
sigset_t ss;
|
|
|
|
sigemptyset (&ss);
|
2022-08-03 09:41:53 +00:00
|
|
|
(void) __pthread_sigmask (SIG_SETMASK, &ss, NULL);
|
2006-08-03 07:54:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
extern inline int
|
|
|
|
__gai_create_helper_thread (pthread_t *threadp, void *(*tf) (void *),
|
|
|
|
void *arg)
|
|
|
|
{
|
|
|
|
pthread_attr_t attr;
|
|
|
|
|
|
|
|
/* Make sure the thread is created detached. */
|
2021-07-02 09:45:00 +00:00
|
|
|
__pthread_attr_init (&attr);
|
|
|
|
__pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
|
2006-08-03 07:54:18 +00:00
|
|
|
|
|
|
|
/* The helper thread needs only very little resources. */
|
2021-07-02 09:45:00 +00:00
|
|
|
(void) __pthread_attr_setstacksize (&attr,
|
|
|
|
__pthread_get_minstack (&attr)
|
|
|
|
+ 4 * PTHREAD_STACK_MIN);
|
2006-08-03 07:54:18 +00:00
|
|
|
|
|
|
|
/* Block all signals in the helper thread. To do this thoroughly we
|
|
|
|
temporarily have to block all signals here. */
|
|
|
|
sigset_t ss;
|
|
|
|
sigset_t oss;
|
|
|
|
sigfillset (&ss);
|
2022-08-03 09:41:53 +00:00
|
|
|
(void) __pthread_sigmask (SIG_SETMASK, &ss, &oss);
|
2006-08-03 07:54:18 +00:00
|
|
|
|
2021-07-02 09:45:00 +00:00
|
|
|
int ret = __pthread_create (threadp, &attr, tf, arg);
|
2006-08-03 07:54:18 +00:00
|
|
|
|
|
|
|
/* Restore the signal mask. */
|
2022-08-03 09:41:53 +00:00
|
|
|
(void) __pthread_sigmask (SIG_SETMASK, &oss, NULL);
|
2006-08-03 07:54:18 +00:00
|
|
|
|
2021-07-02 09:45:00 +00:00
|
|
|
(void) __pthread_attr_destroy (&attr);
|
2006-08-03 07:54:18 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include_next <gai_misc.h>
|