LoongArch: Use "$fcsr0" instead of "$r0" in _FPU_{GET,SET}CW
[glibc.git] / sysdeps / pthread / tst-join2.c
blob95fd8d07fdac514db6bfa988cd69f887c6db0f5e
1 /* Copyright (C) 2002-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>
22 #include <string.h>
23 #include <time.h>
26 static pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
29 static void *
30 tf (void *arg)
32 if (pthread_mutex_lock (&lock) != 0)
34 puts ("child: mutex_lock failed");
35 return NULL;
38 return (void *) 42l;
42 static int
43 do_test (void)
45 pthread_t th;
47 if (pthread_mutex_lock (&lock) != 0)
49 puts ("mutex_lock failed");
50 exit (1);
53 if (pthread_create (&th, NULL, tf, NULL) != 0)
55 puts ("mutex_create failed");
56 exit (1);
59 void *status;
60 int val = pthread_tryjoin_np (th, &status);
61 if (val == 0)
63 puts ("1st tryjoin succeeded");
64 exit (1);
66 else if (val != EBUSY)
68 puts ("1st tryjoin didn't return EBUSY");
69 exit (1);
72 if (pthread_mutex_unlock (&lock) != 0)
74 puts ("mutex_unlock failed");
75 exit (1);
78 while ((val = pthread_tryjoin_np (th, &status)) != 0)
80 if (val != EBUSY)
82 printf ("tryjoin returned %s (%d), expected only 0 or EBUSY\n",
83 strerror (val), val);
84 exit (1);
87 /* Delay minimally. */
88 struct timespec ts = { .tv_sec = 0, .tv_nsec = 10000000 };
89 nanosleep (&ts, NULL);
92 if (status != (void *) 42l)
94 printf ("return value %p, expected %p\n", status, (void *) 42l);
95 exit (1);
98 return 0;
101 #define TEST_FUNCTION do_test ()
102 #include "../test-skeleton.c"