Blame nptl/tst-kill4.c

Packit Service 82fcde
/* Copyright (C) 2003-2018 Free Software Foundation, Inc.
Packit Service 82fcde
   This file is part of the GNU C Library.
Packit Service 82fcde
   Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 82fcde
   modify it under the terms of the GNU Lesser General Public
Packit Service 82fcde
   License as published by the Free Software Foundation; either
Packit Service 82fcde
   version 2.1 of the License, or (at your option) any later version.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 82fcde
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 82fcde
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 82fcde
   Lesser General Public License for more details.
Packit Service 82fcde
Packit Service 82fcde
   You should have received a copy of the GNU Lesser General Public
Packit Service 82fcde
   License along with the GNU C Library; if not, see
Packit Service 82fcde
   <http://www.gnu.org/licenses/>.  */
Packit Service 82fcde
Packit Service 82fcde
#include <errno.h>
Packit Service 82fcde
#include <pthread.h>
Packit Service 82fcde
#include <signal.h>
Packit Service 82fcde
#include <stdio.h>
Packit Service 82fcde
#include <stdlib.h>
Packit Service 82fcde
#include <unistd.h>
Packit Service 82fcde
Packit Service 82fcde
Packit Service 82fcde
static void *
Packit Service 82fcde
tf (void *a)
Packit Service 82fcde
{
Packit Service 82fcde
  return NULL;
Packit Service 82fcde
}
Packit Service 82fcde
Packit Service 82fcde
Packit Service 82fcde
int
Packit Service 82fcde
do_test (void)
Packit Service 82fcde
{
Packit Service 82fcde
  pthread_attr_t at;
Packit Service 82fcde
  if (pthread_attr_init (&at) != 0)
Packit Service 82fcde
    {
Packit Service 82fcde
      puts ("attr_create failed");
Packit Service 82fcde
      exit (1);
Packit Service 82fcde
    }
Packit Service 82fcde
Packit Service 82fcde
  /* Limit thread stack size, because if it is too large, pthread_join
Packit Service 82fcde
     will free it immediately rather than put it into stack cache.  */
Packit Service 82fcde
  if (pthread_attr_setstacksize (&at, 2 * 1024 * 1024) != 0)
Packit Service 82fcde
    {
Packit Service 82fcde
      puts ("setstacksize failed");
Packit Service 82fcde
      exit (1);
Packit Service 82fcde
    }
Packit Service 82fcde
Packit Service 82fcde
  pthread_t th;
Packit Service 82fcde
  if (pthread_create (&th, &at, tf, NULL) != 0)
Packit Service 82fcde
    {
Packit Service 82fcde
      puts ("create failed");
Packit Service 82fcde
      exit (1);
Packit Service 82fcde
    }
Packit Service 82fcde
Packit Service 82fcde
  pthread_attr_destroy (&at);
Packit Service 82fcde
Packit Service 82fcde
  if (pthread_join (th, NULL) != 0)
Packit Service 82fcde
    {
Packit Service 82fcde
      puts ("join failed");
Packit Service 82fcde
      exit (1);
Packit Service 82fcde
    }
Packit Service 82fcde
Packit Service 82fcde
  /* The following only works because we assume here something about
Packit Service 82fcde
     the implementation.  Namely, that the memory allocated for the
Packit Service 82fcde
     thread descriptor is not going away, that the TID field is
Packit Service 82fcde
     cleared and therefore the signal is sent to process 0, and that
Packit Service 82fcde
     we can savely assume there is no other process with this ID at
Packit Service 82fcde
     that time.  */
Packit Service 82fcde
  int e = pthread_kill (th, 0);
Packit Service 82fcde
  if (e == 0)
Packit Service 82fcde
    {
Packit Service 82fcde
      puts ("pthread_kill succeeded");
Packit Service 82fcde
      exit (1);
Packit Service 82fcde
    }
Packit Service 82fcde
  if (e != ESRCH)
Packit Service 82fcde
    {
Packit Service 82fcde
      puts ("pthread_kill didn't return ESRCH");
Packit Service 82fcde
      exit (1);
Packit Service 82fcde
    }
Packit Service 82fcde
Packit Service 82fcde
  return 0;
Packit Service 82fcde
}
Packit Service 82fcde
Packit Service 82fcde
Packit Service 82fcde
#define TEST_FUNCTION do_test ()
Packit Service 82fcde
#include "../test-skeleton.c"