glibc/nptl/tst-signal3.c
Paul Eggert 5a82c74822 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 02:43:31 -07:00

266 lines
5.0 KiB
C

/* Copyright (C) 2002-2019 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
<https://www.gnu.org/licenses/>. */
#include <errno.h>
#include <pthread.h>
#include <semaphore.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#ifdef SIGRTMIN
/* Number of different signals to use. Also is the number of threads. */
# define N 10
/* Maximum number of threads in flight at any one time. */
# define INFLIGHT 5
/* Number of signals sent in total. */
# define ROUNDS 10000
static int received[N][N];
static int nsig[N];
static pthread_t th[N];
static sem_t sem;
static pthread_mutex_t lock[N];
static pthread_t th_main;
static int sig0;
static void
handler (int sig)
{
int i;
for (i = 0; i < N; ++i)
if (pthread_equal (pthread_self (), th[i]))
break;
if (i == N)
{
if (pthread_equal (pthread_self (), th_main))
puts ("signal received by main thread");
else
printf ("signal received by unknown thread (%lx)\n",
(unsigned long int) pthread_self ());
exit (1);
}
++received[i][sig - sig0];
sem_post (&sem);
}
static void *
tf (void *arg)
{
int idx = (long int) arg;
sigset_t ss;
sigemptyset (&ss);
int i;
for (i = 0; i <= idx; ++i)
sigaddset (&ss, sig0 + i);
if (pthread_sigmask (SIG_UNBLOCK, &ss, NULL) != 0)
{
printf ("thread %d: pthread_sigmask failed\n", i);
exit (1);
}
pthread_mutex_lock (&lock[idx]);
return NULL;
}
static int
do_test (void)
{
/* Block all signals. */
sigset_t ss;
sigfillset (&ss);
th_main = pthread_self ();
sig0 = SIGRTMIN;
if (pthread_sigmask (SIG_SETMASK, &ss, NULL) != 0)
{
puts ("1st pthread_sigmask failed");
exit (1);
}
/* Install the handler. */
int i;
for (i = 0; i < N; ++i)
{
struct sigaction sa =
{
.sa_handler = handler,
.sa_flags = 0
};
sigfillset (&sa.sa_mask);
if (sigaction (sig0 + i, &sa, NULL) != 0)
{
printf ("sigaction for signal %d failed\n", i);
exit (1);
}
}
if (sem_init (&sem, 0, INFLIGHT) != 0)
{
puts ("sem_init failed");
exit (1);
}
pthread_attr_t a;
if (pthread_attr_init (&a) != 0)
{
puts ("attr_init failed");
exit (1);
}
if (pthread_attr_setstacksize (&a, 1 * 1024 * 1024) != 0)
{
puts ("attr_setstacksize failed");
return 1;
}
for (i = 0; i < N; ++i)
{
if (pthread_mutex_init (&lock[i], NULL) != 0)
{
printf ("mutex_init[%d] failed\n", i);
}
if (pthread_mutex_lock (&lock[i]) != 0)
{
printf ("mutex_lock[%d] failed\n", i);
}
if (pthread_create (&th[i], &a, tf, (void *) (long int) i) != 0)
{
printf ("create of thread %d failed\n", i);
exit (1);
}
}
if (pthread_attr_destroy (&a) != 0)
{
puts ("attr_destroy failed");
exit (1);
}
int result = 0;
unsigned int r = 42;
pid_t pid = getpid ();
for (i = 0; i < ROUNDS; ++i)
{
if (TEMP_FAILURE_RETRY (sem_wait (&sem)) != 0)
{
printf ("sem_wait round %d failed: %m\n", i);
exit (1);
}
int s = rand_r (&r) % N;
kill (pid, sig0 + s);
}
void *status;
for (i = 0; i < N; ++i)
{
if (pthread_mutex_unlock (&lock[i]) != 0)
{
printf ("unlock %d failed\n", i);
exit (1);
}
if (pthread_join (th[i], &status) != 0)
{
printf ("join %d failed\n", i);
result = 1;
}
else if (status != NULL)
{
printf ("%d: result != NULL\n", i);
result = 1;
}
}
int total = 0;
for (i = 0; i < N; ++i)
{
int j;
for (j = 0; j <= i; ++j)
total += received[i][j];
for (j = i + 1; j < N; ++j)
if (received[i][j] != 0)
{
printf ("thread %d received signal SIGRTMIN+%d\n", i, j);
result = 1;
}
}
if (total != ROUNDS)
{
printf ("total number of handled signals is %d, expected %d\n",
total, ROUNDS);
result = 1;
}
printf ("A total of %d signals sent and received\n", total);
for (i = 0; i < N; ++i)
{
printf ("thread %2d:", i);
int j;
for (j = 0; j <= i; ++j)
{
printf (" %5d", received[i][j]);
nsig[j] += received[i][j];
}
putchar ('\n');
}
printf ("\nTotal :");
for (i = 0; i < N; ++i)
printf (" %5d", nsig[i]);
putchar ('\n');
return result;
}
# define TEST_FUNCTION do_test ()
#else
# define TEST_FUNCTION 0
#endif
#include "../test-skeleton.c"