Lock all
| 246 | |
| 247 | /// Lock all |
| 248 | void lock_all() |
| 249 | { |
| 250 | lock_type * pLock = m_arrLocks; |
| 251 | for ( lock_type * pEnd = m_arrLocks + size(); pLock != pEnd; ++pLock ) |
| 252 | pLock->lock(); |
| 253 | } |
| 254 | |
| 255 | /// Unlock all |
| 256 | void unlock_all() |
no test coverage detected