LoongArch: Use "$fcsr0" instead of "$r0" in _FPU_{GET,SET}CW
[glibc.git] / sysdeps / pthread / tst-rwlock5.c
blobb321ebe78a69b0bcae88163a6b3d0feb4097ff7f
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 <pthread.h>
19 #include <signal.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <unistd.h>
24 static int do_test (void);
26 #define TEST_FUNCTION do_test ()
27 #include "../test-skeleton.c"
29 static pthread_mutex_t m = PTHREAD_MUTEX_INITIALIZER;
30 static pthread_rwlock_t r;
33 static void *
34 tf (void *arg)
36 if (pthread_rwlock_wrlock (&r) == 0)
38 puts ("child: rwlock_wrlock succeeded");
39 exit (1);
42 puts ("child: rwlock_wrlock returned");
44 exit (1);
48 static int
49 do_test (void)
51 pthread_t th;
53 if (pthread_rwlock_init (&r, NULL) != 0)
55 puts ("rwlock_init failed");
56 return 1;
59 if (pthread_rwlock_wrlock (&r) != 0)
61 puts ("rwlock_wrlock failed");
62 return 1;
65 if (pthread_mutex_lock (&m) != 0)
67 puts ("mutex_lock failed");
68 return 1;
71 if (pthread_create (&th, NULL, tf, NULL) != 0)
73 puts ("create failed");
74 return 1;
77 delayed_exit (1);
78 /* This call should never return. */
79 xpthread_mutex_lock (&m);
81 puts ("2nd mutex_lock returned");
82 return 1;