Home
last modified time | relevance | path

Searched refs:m_commonMutex (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sync/
H A Drwmutex.d91 m_commonMutex = new Mutex;
92 if ( !m_commonMutex )
95 m_readerQueue = new Condition( m_commonMutex );
99 m_writerQueue = new Condition( m_commonMutex );
111 m_commonMutex = new shared Mutex;
112 if ( !m_commonMutex )
115 m_readerQueue = new shared Condition( m_commonMutex );
119 m_writerQueue = new shared Condition( m_commonMutex );
217 synchronized( m_commonMutex ) in lock()
231 synchronized( m_commonMutex ) in lock()
[all …]