Remove ENABLE_SSSE3_ON_ATOM.
[glibc.git] / nptl / tst-kill4.c
bloba1b97e7b26896aea20f0d7f15afc39f35296a2d9
1 /* Copyright (C) 2003, 2006 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 #include <errno.h>
21 #include <pthread.h>
22 #include <signal.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <unistd.h>
28 static void *
29 tf (void *a)
31 return NULL;
35 int
36 do_test (void)
38 pthread_attr_t at;
39 if (pthread_attr_init (&at) != 0)
41 puts ("attr_create failed");
42 exit (1);
45 /* Limit thread stack size, because if it is too large, pthread_join
46 will free it immediately rather than put it into stack cache. */
47 if (pthread_attr_setstacksize (&at, 2 * 1024 * 1024) != 0)
49 puts ("setstacksize failed");
50 exit (1);
53 pthread_t th;
54 if (pthread_create (&th, &at, tf, NULL) != 0)
56 puts ("create failed");
57 exit (1);
60 pthread_attr_destroy (&at);
62 if (pthread_join (th, NULL) != 0)
64 puts ("join failed");
65 exit (1);
68 /* The following only works because we assume here something about
69 the implementation. Namely, that the memory allocated for the
70 thread descriptor is not going away, that the the TID field is
71 cleared and therefore the signal is sent to process 0, and that
72 we can savely assume there is no other process with this ID at
73 that time. */
74 int e = pthread_kill (th, 0);
75 if (e == 0)
77 puts ("pthread_kill succeeded");
78 exit (1);
80 if (e != ESRCH)
82 puts ("pthread_kill didn't return ESRCH");
83 exit (1);
86 return 0;
90 #define TEST_FUNCTION do_test ()
91 #include "../test-skeleton.c"