Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
| 3 | * All rights reserved. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
| 8 | * * Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * * Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in |
| 12 | * the documentation and/or other materials provided with the |
| 13 | * distribution. |
| 14 | * |
| 15 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 16 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 17 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| 18 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| 19 | * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 20 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| 21 | * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| 22 | * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| 23 | * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 24 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| 25 | * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 26 | * SUCH DAMAGE. |
| 27 | */ |
| 28 | |
| 29 | #include <pthread.h> |
| 30 | |
| 31 | #include <errno.h> |
| 32 | #include <limits.h> |
Yabin Cui | e5f816c | 2015-01-29 12:13:33 -0800 | [diff] [blame] | 33 | #include <stdatomic.h> |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 34 | #include <sys/mman.h> |
Narayan Kamath | 51e6cb3 | 2014-03-03 15:38:51 +0000 | [diff] [blame] | 35 | #include <time.h> |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 36 | #include <unistd.h> |
| 37 | |
| 38 | #include "pthread_internal.h" |
| 39 | |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 40 | #include "private/bionic_futex.h" |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 41 | #include "private/bionic_time_conversions.h" |
| 42 | #include "private/bionic_tls.h" |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 43 | |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 44 | // XXX *technically* there is a race condition that could allow |
| 45 | // XXX a signal to be missed. If thread A is preempted in _wait() |
| 46 | // XXX after unlocking the mutex and before waiting, and if other |
| 47 | // XXX threads call signal or broadcast UINT_MAX/2 times (exactly), |
| 48 | // XXX before thread A is scheduled again and calls futex_wait(), |
| 49 | // XXX then the signal will be lost. |
| 50 | |
Narayan Kamath | 51e6cb3 | 2014-03-03 15:38:51 +0000 | [diff] [blame] | 51 | // We use one bit in pthread_condattr_t (long) values as the 'shared' flag |
Elliott Hughes | b66a003 | 2017-02-18 16:35:36 -0800 | [diff] [blame] | 52 | // and one bit for the clock type (CLOCK_REALTIME is 0 and |
| 53 | // CLOCK_MONOTONIC is 1). The rest of the bits are a counter. |
Narayan Kamath | 51e6cb3 | 2014-03-03 15:38:51 +0000 | [diff] [blame] | 54 | // |
Elliott Hughes | b66a003 | 2017-02-18 16:35:36 -0800 | [diff] [blame] | 55 | // The 'value' field in pthread_cond_t has the same layout. |
Narayan Kamath | 51e6cb3 | 2014-03-03 15:38:51 +0000 | [diff] [blame] | 56 | |
| 57 | #define COND_SHARED_MASK 0x0001 |
| 58 | #define COND_CLOCK_MASK 0x0002 |
| 59 | #define COND_COUNTER_STEP 0x0004 |
| 60 | #define COND_FLAGS_MASK (COND_SHARED_MASK | COND_CLOCK_MASK) |
| 61 | #define COND_COUNTER_MASK (~COND_FLAGS_MASK) |
| 62 | |
| 63 | #define COND_IS_SHARED(c) (((c) & COND_SHARED_MASK) != 0) |
| 64 | #define COND_GET_CLOCK(c) (((c) & COND_CLOCK_MASK) >> 1) |
| 65 | #define COND_SET_CLOCK(attr, c) ((attr) | (c << 1)) |
| 66 | |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 67 | int pthread_condattr_init(pthread_condattr_t* attr) { |
Narayan Kamath | 51e6cb3 | 2014-03-03 15:38:51 +0000 | [diff] [blame] | 68 | *attr = 0; |
| 69 | *attr |= PTHREAD_PROCESS_PRIVATE; |
| 70 | *attr |= (CLOCK_REALTIME << 1); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 71 | return 0; |
| 72 | } |
| 73 | |
| 74 | int pthread_condattr_getpshared(const pthread_condattr_t* attr, int* pshared) { |
Narayan Kamath | 51e6cb3 | 2014-03-03 15:38:51 +0000 | [diff] [blame] | 75 | *pshared = static_cast<int>(COND_IS_SHARED(*attr)); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 76 | return 0; |
| 77 | } |
| 78 | |
| 79 | int pthread_condattr_setpshared(pthread_condattr_t* attr, int pshared) { |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 80 | if (pshared != PTHREAD_PROCESS_SHARED && pshared != PTHREAD_PROCESS_PRIVATE) { |
| 81 | return EINVAL; |
| 82 | } |
Narayan Kamath | 51e6cb3 | 2014-03-03 15:38:51 +0000 | [diff] [blame] | 83 | |
| 84 | *attr |= pshared; |
| 85 | return 0; |
| 86 | } |
| 87 | |
| 88 | int pthread_condattr_getclock(const pthread_condattr_t* attr, clockid_t* clock) { |
| 89 | *clock = COND_GET_CLOCK(*attr); |
| 90 | return 0; |
| 91 | } |
| 92 | |
| 93 | int pthread_condattr_setclock(pthread_condattr_t* attr, clockid_t clock) { |
| 94 | if (clock != CLOCK_MONOTONIC && clock != CLOCK_REALTIME) { |
| 95 | return EINVAL; |
| 96 | } |
| 97 | |
| 98 | *attr = COND_SET_CLOCK(*attr, clock); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 99 | return 0; |
| 100 | } |
| 101 | |
| 102 | int pthread_condattr_destroy(pthread_condattr_t* attr) { |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 103 | *attr = 0xdeada11d; |
| 104 | return 0; |
| 105 | } |
| 106 | |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 107 | struct pthread_cond_internal_t { |
| 108 | atomic_uint state; |
Yabin Cui | e5f816c | 2015-01-29 12:13:33 -0800 | [diff] [blame] | 109 | |
Yabin Cui | 9e6c7bc | 2015-03-16 14:26:53 -0700 | [diff] [blame] | 110 | bool process_shared() { |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 111 | return COND_IS_SHARED(atomic_load_explicit(&state, memory_order_relaxed)); |
| 112 | } |
| 113 | |
Yabin Cui | c9a659c | 2015-11-05 15:36:08 -0800 | [diff] [blame] | 114 | bool use_realtime_clock() { |
| 115 | return COND_GET_CLOCK(atomic_load_explicit(&state, memory_order_relaxed)) == CLOCK_REALTIME; |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | #if defined(__LP64__) |
Tim Murray | 9c08f4f | 2020-10-07 17:11:28 +0000 | [diff] [blame] | 119 | atomic_uint waiters; |
| 120 | char __reserved[40]; |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 121 | #endif |
| 122 | }; |
| 123 | |
Yabin Cui | b584572 | 2015-03-16 22:46:42 -0700 | [diff] [blame] | 124 | static_assert(sizeof(pthread_cond_t) == sizeof(pthread_cond_internal_t), |
| 125 | "pthread_cond_t should actually be pthread_cond_internal_t in implementation."); |
| 126 | |
| 127 | // For binary compatibility with old version of pthread_cond_t, we can't use more strict alignment |
| 128 | // than 4-byte alignment. |
| 129 | static_assert(alignof(pthread_cond_t) == 4, |
| 130 | "pthread_cond_t should fulfill the alignment requirement of pthread_cond_internal_t."); |
| 131 | |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 132 | static pthread_cond_internal_t* __get_internal_cond(pthread_cond_t* cond_interface) { |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 133 | return reinterpret_cast<pthread_cond_internal_t*>(cond_interface); |
Yabin Cui | e5f816c | 2015-01-29 12:13:33 -0800 | [diff] [blame] | 134 | } |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 135 | |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 136 | int pthread_cond_init(pthread_cond_t* cond_interface, const pthread_condattr_t* attr) { |
| 137 | pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 138 | |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 139 | unsigned int init_state = 0; |
Yi Kong | 32bc0fc | 2018-08-02 17:31:13 -0700 | [diff] [blame] | 140 | if (attr != nullptr) { |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 141 | init_state = (*attr & COND_FLAGS_MASK); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 142 | } |
Nick Desaulniers | 2e65afe | 2024-11-19 09:27:06 -0800 | [diff] [blame^] | 143 | atomic_store_explicit(&cond->state, init_state, memory_order_relaxed); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 144 | |
Tim Murray | 9c08f4f | 2020-10-07 17:11:28 +0000 | [diff] [blame] | 145 | #if defined(__LP64__) |
Nick Desaulniers | 2e65afe | 2024-11-19 09:27:06 -0800 | [diff] [blame^] | 146 | atomic_store_explicit(&cond->waiters, 0, memory_order_relaxed); |
Tim Murray | 9c08f4f | 2020-10-07 17:11:28 +0000 | [diff] [blame] | 147 | #endif |
| 148 | |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 149 | return 0; |
| 150 | } |
| 151 | |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 152 | int pthread_cond_destroy(pthread_cond_t* cond_interface) { |
| 153 | pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); |
| 154 | atomic_store_explicit(&cond->state, 0xdeadc04d, memory_order_relaxed); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 155 | return 0; |
| 156 | } |
| 157 | |
| 158 | // This function is used by pthread_cond_broadcast and |
| 159 | // pthread_cond_signal to atomically decrement the counter |
Yabin Cui | e5f816c | 2015-01-29 12:13:33 -0800 | [diff] [blame] | 160 | // then wake up thread_count threads. |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 161 | static int __pthread_cond_pulse(pthread_cond_internal_t* cond, int thread_count) { |
Yabin Cui | e5f816c | 2015-01-29 12:13:33 -0800 | [diff] [blame] | 162 | // We don't use a release/seq_cst fence here. Because pthread_cond_wait/signal can't be |
| 163 | // used as a method for memory synchronization by itself. It should always be used with |
| 164 | // pthread mutexes. Note that Spurious wakeups from pthread_cond_wait/timedwait may occur, |
| 165 | // so when using condition variables there is always a boolean predicate involving shared |
| 166 | // variables associated with each condition wait that is true if the thread should proceed. |
| 167 | // If the predicate is seen true before a condition wait, pthread_cond_wait/timedwait will |
| 168 | // not be called. That's why pthread_wait/signal pair can't be used as a method for memory |
| 169 | // synchronization. And it doesn't help even if we use any fence here. |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 170 | |
Tim Murray | 9c08f4f | 2020-10-07 17:11:28 +0000 | [diff] [blame] | 171 | #if defined(__LP64__) |
| 172 | if (atomic_load_explicit(&cond->waiters, memory_order_relaxed) == 0) { |
| 173 | return 0; |
| 174 | } |
| 175 | #endif |
| 176 | |
Yabin Cui | e5f816c | 2015-01-29 12:13:33 -0800 | [diff] [blame] | 177 | // The increase of value should leave flags alone, even if the value can overflows. |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 178 | atomic_fetch_add_explicit(&cond->state, COND_COUNTER_STEP, memory_order_relaxed); |
Yabin Cui | e5f816c | 2015-01-29 12:13:33 -0800 | [diff] [blame] | 179 | |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 180 | __futex_wake_ex(&cond->state, cond->process_shared(), thread_count); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 181 | return 0; |
| 182 | } |
| 183 | |
Yabin Cui | c9a659c | 2015-11-05 15:36:08 -0800 | [diff] [blame] | 184 | static int __pthread_cond_timedwait(pthread_cond_internal_t* cond, pthread_mutex_t* mutex, |
| 185 | bool use_realtime_clock, const timespec* abs_timeout_or_null) { |
Elliott Hughes | dd586f2 | 2015-12-16 15:15:58 -0800 | [diff] [blame] | 186 | int result = check_timespec(abs_timeout_or_null, true); |
Yabin Cui | c9a659c | 2015-11-05 15:36:08 -0800 | [diff] [blame] | 187 | if (result != 0) { |
| 188 | return result; |
| 189 | } |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 190 | |
Yabin Cui | c9a659c | 2015-11-05 15:36:08 -0800 | [diff] [blame] | 191 | unsigned int old_state = atomic_load_explicit(&cond->state, memory_order_relaxed); |
Tim Murray | 9c08f4f | 2020-10-07 17:11:28 +0000 | [diff] [blame] | 192 | |
| 193 | #if defined(__LP64__) |
| 194 | atomic_fetch_add_explicit(&cond->waiters, 1, memory_order_relaxed); |
| 195 | #endif |
| 196 | |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 197 | pthread_mutex_unlock(mutex); |
Yabin Cui | c9a659c | 2015-11-05 15:36:08 -0800 | [diff] [blame] | 198 | int status = __futex_wait_ex(&cond->state, cond->process_shared(), old_state, |
| 199 | use_realtime_clock, abs_timeout_or_null); |
Tim Murray | 9c08f4f | 2020-10-07 17:11:28 +0000 | [diff] [blame] | 200 | |
| 201 | #if defined(__LP64__) |
| 202 | atomic_fetch_sub_explicit(&cond->waiters, 1, memory_order_relaxed); |
| 203 | #endif |
| 204 | |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 205 | pthread_mutex_lock(mutex); |
| 206 | |
Elliott Hughes | 9e79af3 | 2013-12-18 10:05:42 -0800 | [diff] [blame] | 207 | if (status == -ETIMEDOUT) { |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 208 | return ETIMEDOUT; |
| 209 | } |
| 210 | return 0; |
| 211 | } |
| 212 | |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 213 | int pthread_cond_broadcast(pthread_cond_t* cond_interface) { |
| 214 | return __pthread_cond_pulse(__get_internal_cond(cond_interface), INT_MAX); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 215 | } |
| 216 | |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 217 | int pthread_cond_signal(pthread_cond_t* cond_interface) { |
| 218 | return __pthread_cond_pulse(__get_internal_cond(cond_interface), 1); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 219 | } |
| 220 | |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 221 | int pthread_cond_wait(pthread_cond_t* cond_interface, pthread_mutex_t* mutex) { |
| 222 | pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); |
Yabin Cui | c9a659c | 2015-11-05 15:36:08 -0800 | [diff] [blame] | 223 | return __pthread_cond_timedwait(cond, mutex, false, nullptr); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 224 | } |
| 225 | |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 226 | int pthread_cond_timedwait(pthread_cond_t *cond_interface, pthread_mutex_t * mutex, |
| 227 | const timespec *abstime) { |
| 228 | |
| 229 | pthread_cond_internal_t* cond = __get_internal_cond(cond_interface); |
Yabin Cui | c9a659c | 2015-11-05 15:36:08 -0800 | [diff] [blame] | 230 | return __pthread_cond_timedwait(cond, mutex, cond->use_realtime_clock(), abstime); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 231 | } |
| 232 | |
Tom Cherry | c6b5bcd | 2018-03-05 14:14:44 -0800 | [diff] [blame] | 233 | extern "C" int pthread_cond_timedwait_monotonic_np(pthread_cond_t* cond_interface, |
| 234 | pthread_mutex_t* mutex, |
| 235 | const timespec* abs_timeout) { |
| 236 | return __pthread_cond_timedwait(__get_internal_cond(cond_interface), mutex, false, abs_timeout); |
| 237 | } |
| 238 | |
Tom Cherry | 6901080 | 2019-05-07 20:33:05 -0700 | [diff] [blame] | 239 | int pthread_cond_clockwait(pthread_cond_t* cond_interface, pthread_mutex_t* mutex, clockid_t clock, |
| 240 | const struct timespec* abs_timeout) { |
| 241 | switch (clock) { |
| 242 | case CLOCK_MONOTONIC: |
| 243 | return pthread_cond_timedwait_monotonic_np(cond_interface, mutex, abs_timeout); |
| 244 | case CLOCK_REALTIME: |
Tom Cherry | 800c1a9 | 2019-07-17 10:45:18 -0700 | [diff] [blame] | 245 | return __pthread_cond_timedwait(__get_internal_cond(cond_interface), mutex, true, abs_timeout); |
Tom Cherry | 6901080 | 2019-05-07 20:33:05 -0700 | [diff] [blame] | 246 | default: |
| 247 | return EINVAL; |
| 248 | } |
| 249 | } |
| 250 | |
Narayan Kamath | 51e6cb3 | 2014-03-03 15:38:51 +0000 | [diff] [blame] | 251 | #if !defined(__LP64__) |
Elliott Hughes | 9108f25 | 2023-02-25 00:22:25 +0000 | [diff] [blame] | 252 | // This exists only for backward binary compatibility on 32 bit platforms. |
| 253 | // (This is actually a _new_ function in API 28 that we could only implement for LP64.) |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 254 | extern "C" int pthread_cond_timedwait_monotonic(pthread_cond_t* cond_interface, |
| 255 | pthread_mutex_t* mutex, |
| 256 | const timespec* abs_timeout) { |
Tom Cherry | c6b5bcd | 2018-03-05 14:14:44 -0800 | [diff] [blame] | 257 | return pthread_cond_timedwait_monotonic_np(cond_interface, mutex, abs_timeout); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 258 | } |
Elliott Hughes | 9108f25 | 2023-02-25 00:22:25 +0000 | [diff] [blame] | 259 | #endif |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 260 | |
Elliott Hughes | 9108f25 | 2023-02-25 00:22:25 +0000 | [diff] [blame] | 261 | #if !defined(__LP64__) |
| 262 | // This exists only for backward binary compatibility on 32 bit platforms. |
| 263 | // (This function never existed for LP64.) |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 264 | extern "C" int pthread_cond_timedwait_relative_np(pthread_cond_t* cond_interface, |
| 265 | pthread_mutex_t* mutex, |
| 266 | const timespec* rel_timeout) { |
Yabin Cui | c9a659c | 2015-11-05 15:36:08 -0800 | [diff] [blame] | 267 | timespec ts; |
| 268 | timespec* abs_timeout = nullptr; |
| 269 | if (rel_timeout != nullptr) { |
Yabin Cui | fe4a4d8 | 2016-07-13 15:53:25 -0700 | [diff] [blame] | 270 | absolute_timespec_from_timespec(ts, *rel_timeout, CLOCK_MONOTONIC); |
Yabin Cui | c9a659c | 2015-11-05 15:36:08 -0800 | [diff] [blame] | 271 | abs_timeout = &ts; |
| 272 | } |
Yabin Cui | fe4a4d8 | 2016-07-13 15:53:25 -0700 | [diff] [blame] | 273 | return __pthread_cond_timedwait(__get_internal_cond(cond_interface), mutex, false, abs_timeout); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 274 | } |
Elliott Hughes | 9108f25 | 2023-02-25 00:22:25 +0000 | [diff] [blame] | 275 | #endif |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 276 | |
Elliott Hughes | 9108f25 | 2023-02-25 00:22:25 +0000 | [diff] [blame] | 277 | #if !defined(__LP64__) |
| 278 | // This exists only for backward binary compatibility on 32 bit platforms. |
| 279 | // (This function never existed for LP64.) |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 280 | extern "C" int pthread_cond_timeout_np(pthread_cond_t* cond_interface, |
| 281 | pthread_mutex_t* mutex, unsigned ms) { |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 282 | timespec ts; |
| 283 | timespec_from_ms(ts, ms); |
Yabin Cui | 32651b8 | 2015-03-13 20:30:00 -0700 | [diff] [blame] | 284 | return pthread_cond_timedwait_relative_np(cond_interface, mutex, &ts); |
Elliott Hughes | c3f1140 | 2013-10-30 14:40:09 -0700 | [diff] [blame] | 285 | } |
Elliott Hughes | 9108f25 | 2023-02-25 00:22:25 +0000 | [diff] [blame] | 286 | #endif |