| 619 | } |
| 620 | |
| 621 | uint32_t GetReuseCount(HPool pool, HConnection connection) |
| 622 | { |
| 623 | DM_MUTEX_SCOPED_LOCK(pool->m_Mutex); |
| 624 | |
| 625 | Connection* c = GetConnection(pool, connection); |
| 626 | assert(c->m_State == STATE_INUSE); |
| 627 | return c->m_ReuseCount; |
| 628 | } |
| 629 | |
| 630 | uint32_t Shutdown(HPool pool, dmSocket::ShutdownType how) |
| 631 | { |
no test coverage detected