Bug 1865597 - Add error checking when initializing parallel marking and disable on...
[gecko.git] / mozglue / misc / RWLock_posix.cpp
blob970bddd1aa421116a7650d7b024dcf1e672279e7
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifdef XP_WIN
8 # error This file should only be compiled on non-Windows platforms.
9 #endif
11 #include "mozilla/PlatformRWLock.h"
13 #include "mozilla/Assertions.h"
15 #include <errno.h>
17 // NOLINTNEXTLINE(cppcoreguidelines-pro-type-member-init)
18 mozilla::detail::RWLockImpl::RWLockImpl() {
19 MOZ_RELEASE_ASSERT(pthread_rwlock_init(&mRWLock, nullptr) == 0,
20 "pthread_rwlock_init failed");
23 mozilla::detail::RWLockImpl::~RWLockImpl() {
24 MOZ_RELEASE_ASSERT(pthread_rwlock_destroy(&mRWLock) == 0,
25 "pthread_rwlock_destroy failed");
28 bool mozilla::detail::RWLockImpl::tryReadLock() {
29 int rv = pthread_rwlock_tryrdlock(&mRWLock);
30 // We allow EDEADLK here because it has been observed returned on macos when
31 // the write lock is held by the current thread.
32 MOZ_RELEASE_ASSERT(rv == 0 || rv == EBUSY || rv == EDEADLK,
33 "pthread_rwlock_tryrdlock failed");
34 return rv == 0;
37 void mozilla::detail::RWLockImpl::readLock() {
38 MOZ_RELEASE_ASSERT(pthread_rwlock_rdlock(&mRWLock) == 0,
39 "pthread_rwlock_rdlock failed");
42 void mozilla::detail::RWLockImpl::readUnlock() {
43 MOZ_RELEASE_ASSERT(pthread_rwlock_unlock(&mRWLock) == 0,
44 "pthread_rwlock_unlock failed");
47 bool mozilla::detail::RWLockImpl::tryWriteLock() {
48 int rv = pthread_rwlock_trywrlock(&mRWLock);
49 // We allow EDEADLK here because it has been observed returned on macos when
50 // the write lock is held by the current thread.
51 MOZ_RELEASE_ASSERT(rv == 0 || rv == EBUSY || rv == EDEADLK,
52 "pthread_rwlock_trywrlock failed");
53 return rv == 0;
56 void mozilla::detail::RWLockImpl::writeLock() {
57 MOZ_RELEASE_ASSERT(pthread_rwlock_wrlock(&mRWLock) == 0,
58 "pthread_rwlock_wrlock failed");
61 void mozilla::detail::RWLockImpl::writeUnlock() {
62 MOZ_RELEASE_ASSERT(pthread_rwlock_unlock(&mRWLock) == 0,
63 "pthread_rwlock_unlock failed");