Home
last modified time | relevance | path

Searched defs:_STLP_mutex_base (Results 1 – 1 of 1) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_threads.h275 struct _STLP_CLASS_DECLSPEC _STLP_mutex_base { struct
278 volatile __stl_atomic_t _M_lock;
283 inline void _M_initialize() { _M_lock = 0; } in _M_initialize()
284 inline void _M_destroy() {} in _M_destroy()
286 void _M_acquire_lock() { in _M_acquire_lock()
290 inline void _M_release_lock() { in _M_release_lock()
322 // _STLP_mutex_base() argument
328 inline void _M_acquire_lock() { pthread_spin_lock( &_M_lock ); } in _M_acquire_lock()
329 inline void _M_release_lock() { pthread_spin_unlock( &_M_lock ); } in _M_release_lock()
331 spinlock_t _M_lock;
[all …]