LoongArch: Use "$fcsr0" instead of "$r0" in _FPU_{GET,SET}CW
[glibc.git] / sysdeps / pthread / tst-join4.c
blobfbe05a4a9f60439589bb2ccd554366c45d0c49a3
1 /* Copyright (C) 2003-2024 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
18 #include <errno.h>
19 #include <pthread.h>
20 #include <stdio.h>
21 #include <stdlib.h>
24 static pthread_barrier_t bar;
27 static void *
28 tf (void *arg)
30 if (pthread_barrier_wait (&bar) != 0)
32 puts ("tf: barrier_wait failed");
33 exit (1);
36 return (void *) 1l;
40 static int
41 do_test (void)
43 if (pthread_barrier_init (&bar, NULL, 3) != 0)
45 puts ("barrier_init failed");
46 exit (1);
49 pthread_attr_t a;
51 if (pthread_attr_init (&a) != 0)
53 puts ("attr_init failed");
54 exit (1);
57 if (pthread_attr_setstacksize (&a, 1 * 1024 * 1024) != 0)
59 puts ("attr_setstacksize failed");
60 return 1;
63 pthread_t th[2];
65 if (pthread_create (&th[0], &a, tf, NULL) != 0)
67 puts ("1st create failed");
68 exit (1);
71 if (pthread_attr_setdetachstate (&a, PTHREAD_CREATE_DETACHED) != 0)
73 puts ("attr_setdetachstate failed");
74 exit (1);
77 if (pthread_create (&th[1], &a, tf, NULL) != 0)
79 puts ("1st create failed");
80 exit (1);
83 if (pthread_attr_destroy (&a) != 0)
85 puts ("attr_destroy failed");
86 exit (1);
89 if (pthread_detach (th[0]) != 0)
91 puts ("could not detach 1st thread");
92 exit (1);
95 int err = pthread_detach (th[0]);
96 if (err == 0)
98 puts ("second detach of 1st thread succeeded");
99 exit (1);
101 if (err != EINVAL)
103 printf ("second detach of 1st thread returned %d, not EINVAL\n", err);
104 exit (1);
107 err = pthread_detach (th[1]);
108 if (err == 0)
110 puts ("detach of 2nd thread succeeded");
111 exit (1);
113 if (err != EINVAL)
115 printf ("detach of 2nd thread returned %d, not EINVAL\n", err);
116 exit (1);
119 exit (0);
122 #define TEST_FUNCTION do_test ()
123 #include "../test-skeleton.c"