| 1512 | } |
| 1513 | |
| 1514 | void ConnectionsPool::IdleTimer::stop() |
| 1515 | { |
| 1516 | MutexLockGuard guard(m_mutex, FB_FUNCTION); |
| 1517 | if (!m_time) |
| 1518 | return; |
| 1519 | |
| 1520 | m_time = 0; |
| 1521 | |
| 1522 | FbLocalStatus s; |
| 1523 | ITimerControl* timerCtrl = Firebird::TimerInterfacePtr(); |
| 1524 | timerCtrl->stop(&s, this); |
| 1525 | } |
| 1526 | |
| 1527 | |
| 1528 | // Transaction |
no test coverage detected