Remove ENABLE_SSSE3_ON_ATOM.
[glibc.git] / nptl / tst-tsd2.c
blob19d8a69f9ef09d93278785cc1bfdc4540e79e9af
1 /* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
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 <pthread.h>
21 #include <stdio.h>
22 #include <string.h>
25 static int result;
28 static void
29 destr (void *arg)
31 if (arg != (void *) -2l)
32 result = 2;
33 else
34 result = 0;
38 static void *
39 tf (void *arg)
41 pthread_key_t key = (pthread_key_t) (long int) arg;
42 int err;
44 err = pthread_setspecific (key, (void *) -2l);
45 if (err != 0)
46 result = 3;
48 return NULL;
52 static int
53 do_test (void)
55 pthread_key_t key;
56 pthread_t th;
57 int err;
59 err = pthread_key_create (&key, destr);
60 if (err != 0)
62 printf ("key_create failed: %s\n", strerror (err));
63 return 1;
66 result = 1;
68 err = pthread_create (&th, NULL, tf, (void *) (long int) key);
69 if (err != 0)
71 printf ("create failed: %s\n", strerror (err));
72 return 1;
75 /* Wait for the thread to terminate. */
76 err = pthread_join (th, NULL);
77 if (err != 0)
79 printf ("join failed: %s\n", strerror (err));
80 return 1;
83 if (result == 1)
84 puts ("destructor not called");
85 else if (result == 2)
86 puts ("destructor got passed a wrong value");
87 else if (result == 3)
88 puts ("setspecific in child failed");
89 else if (result != 0)
90 puts ("result != 0");
92 return result;
96 #define TEST_FUNCTION do_test ()
97 #include "../test-skeleton.c"