forked from mirrors/gecko-dev
		
	 97bc60386d
			
		
	
	
		97bc60386d
		
	
	
	
	
		
			
			This is consistent with how xpcom's Mutex has its platform-dependent code in mozglue, and will allow readers-writer locks in mozglue without duplication. Differential Revision: https://phabricator.services.mozilla.com/D139669
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			681 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			681 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
 | |
| /* vim: set ts=8 sts=2 et sw=2 tw=80: */
 | |
| /* This Source Code Form is subject to the terms of the Mozilla Public
 | |
|  * License, v. 2.0. If a copy of the MPL was not distributed with this
 | |
|  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 | |
| 
 | |
| #include "mozilla/RWLock.h"
 | |
| 
 | |
| namespace mozilla {
 | |
| 
 | |
| RWLock::RWLock(const char* aName)
 | |
|     : BlockingResourceBase(aName, eMutex)
 | |
| #ifdef DEBUG
 | |
|       ,
 | |
|       mOwningThread(nullptr)
 | |
| #endif
 | |
| {
 | |
| }
 | |
| 
 | |
| #ifdef DEBUG
 | |
| bool RWLock::LockedForWritingByCurrentThread() {
 | |
|   return mOwningThread == PR_GetCurrentThread();
 | |
| }
 | |
| #endif
 | |
| 
 | |
| }  // namespace mozilla
 | |
| 
 | |
| #undef NativeHandle
 |