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/>. */
24 #include <support/check.h>
25 #include <support/timespec.h>
26 #include <support/xthread.h>
27 #include <support/xtime.h>
30 /* A bogus clock value that tells run_test to use pthread_rwlock_timedrdlock
31 and pthread_rwlock_timedwrlock rather than pthread_rwlock_clockrdlock and
32 pthread_rwlock_clockwrlock. */
33 #define CLOCK_USE_TIMEDLOCK (-1)
37 PTHREAD_RWLOCK_PREFER_READER_NP
,
38 PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP
,
39 PTHREAD_RWLOCK_PREFER_WRITER_NP
,
44 pthread_rwlock_t
*rwlock
;
52 struct thread_args
*args
= arg
;
53 pthread_rwlock_t
*r
= args
->rwlock
;
54 const clockid_t clockid
= args
->clockid
;
55 const clockid_t clockid_for_get
=
56 (clockid
== CLOCK_USE_TIMEDLOCK
) ? CLOCK_REALTIME
: clockid
;
57 const char *fnname
= args
->fnname
;
59 /* Timeout: 0.3 secs. */
60 struct timespec ts_start
;
61 xclock_gettime (clockid_for_get
, &ts_start
);
62 const struct timespec ts_timeout
= timespec_add (ts_start
,
63 make_timespec (0, 300000000));
65 if (clockid
== CLOCK_USE_TIMEDLOCK
)
66 TEST_COMPARE (pthread_rwlock_timedwrlock (r
, &ts_timeout
), ETIMEDOUT
);
68 TEST_COMPARE (pthread_rwlock_clockwrlock (r
, clockid
, &ts_timeout
),
70 printf ("child: %swrlock failed with ETIMEDOUT", fnname
);
72 TEST_TIMESPEC_NOW_OR_AFTER (clockid_for_get
, ts_timeout
);
74 struct timespec ts_invalid
;
75 xclock_gettime (clockid_for_get
, &ts_invalid
);
76 ts_invalid
.tv_sec
+= 10;
77 /* Note that the following operation makes ts invalid. */
78 ts_invalid
.tv_nsec
+= 1000000000;
80 if (clockid
== CLOCK_USE_TIMEDLOCK
)
81 TEST_COMPARE (pthread_rwlock_timedwrlock (r
, &ts_invalid
), EINVAL
);
83 TEST_COMPARE (pthread_rwlock_clockwrlock (r
, clockid
, &ts_invalid
), EINVAL
);
85 printf ("child: %swrlock failed with EINVAL", fnname
);
92 do_test_clock (clockid_t clockid
, const char *fnname
)
94 const clockid_t clockid_for_get
=
95 (clockid
== CLOCK_USE_TIMEDLOCK
) ? CLOCK_REALTIME
: clockid
;
97 for (cnt
= 0; cnt
< sizeof (kind
) / sizeof (kind
[0]); ++cnt
)
100 pthread_rwlockattr_t a
;
102 if (pthread_rwlockattr_init (&a
) != 0)
103 FAIL_EXIT1 ("round %zu: rwlockattr_t failed\n", cnt
);
105 if (pthread_rwlockattr_setkind_np (&a
, kind
[cnt
]) != 0)
106 FAIL_EXIT1 ("round %zu: rwlockattr_setkind failed\n", cnt
);
108 if (pthread_rwlock_init (&r
, &a
) != 0)
109 FAIL_EXIT1 ("round %zu: rwlock_init failed\n", cnt
);
111 if (pthread_rwlockattr_destroy (&a
) != 0)
112 FAIL_EXIT1 ("round %zu: rwlockattr_destroy failed\n", cnt
);
115 xclock_gettime (clockid_for_get
, &ts
);
119 /* Get a read lock. */
120 if (clockid
== CLOCK_USE_TIMEDLOCK
) {
121 if (pthread_rwlock_timedrdlock (&r
, &ts
) != 0)
122 FAIL_EXIT1 ("round %zu: rwlock_timedrdlock failed\n", cnt
);
124 if (pthread_rwlock_clockrdlock (&r
, clockid
, &ts
) != 0)
125 FAIL_EXIT1 ("round %zu: rwlock_%srdlock failed\n", cnt
, fnname
);
128 printf ("%zu: got %srdlock\n", cnt
, fnname
);
130 struct thread_args args
;
132 args
.clockid
= clockid
;
133 args
.fnname
= fnname
;
134 pthread_t th
= xpthread_create (NULL
, tf
, &args
);
135 void *status
= xpthread_join (th
);
137 FAIL_EXIT1 ("failure in round %zu\n", cnt
);
139 if (pthread_rwlock_destroy (&r
) != 0)
140 FAIL_EXIT1 ("round %zu: rwlock_destroy failed\n", cnt
);
149 do_test_clock (CLOCK_USE_TIMEDLOCK
, "timed");
150 do_test_clock (CLOCK_MONOTONIC
, "clock(monotonic)");
151 do_test_clock (CLOCK_REALTIME
, "clock(realtime)");
156 #include <support/test-driver.c>