| 9132 | } |
| 9133 | |
| 9134 | void TimeoutTimer::stop() |
| 9135 | { |
| 9136 | if (m_started) |
| 9137 | { |
| 9138 | m_started = 0; |
| 9139 | |
| 9140 | FbLocalStatus s; |
| 9141 | ITimerControl* timerCtrl = Firebird::TimerInterfacePtr(); |
| 9142 | timerCtrl->stop(&s, this); |
| 9143 | } |
| 9144 | } |
| 9145 | #else |
| 9146 | bool TimeoutTimer::expired() const |
| 9147 | { |
no test coverage detected