| 19 | namespace phxsql { |
| 20 | |
| 21 | MmapLeakyBucket::MmapLeakyBucket() { |
| 22 | m_poLock = NULL; |
| 23 | memset(&m_tConfig, 0, sizeof(m_tConfig)); |
| 24 | m_ptBucket = NULL; |
| 25 | } |
| 26 | |
| 27 | MmapLeakyBucket::~MmapLeakyBucket() { |
| 28 | if (NULL != m_poLock) |
nothing calls this directly
no outgoing calls
no test coverage detected