Bug 1867190 - Initialise the PHC allocate delay later r=glandium
[gecko.git] / xpcom / threads / RWLock.cpp
blob949934c8cc27350a89ac75051f7ef8773ba6e394
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 #include "mozilla/RWLock.h"
9 namespace mozilla {
11 RWLock::RWLock(const char* aName)
12 : BlockingResourceBase(aName, eMutex)
13 #ifdef DEBUG
15 mOwningThread(nullptr)
16 #endif
20 #ifdef DEBUG
21 bool RWLock::LockedForWritingByCurrentThread() {
22 return mOwningThread == PR_GetCurrentThread();
24 #endif
26 } // namespace mozilla
28 #undef NativeHandle