| 367 | } |
| 368 | |
| 369 | void stop(CheckStatusWrapper* status, ITimer* timer) |
| 370 | { |
| 371 | try |
| 372 | { |
| 373 | MutexLockGuard guard(timerAccess, FB_FUNCTION); |
| 374 | |
| 375 | TimerEntry* curTimer = getTimer(timer); |
| 376 | if (curTimer) |
| 377 | { |
| 378 | curTimer->timer->release(); |
| 379 | timerQueue->remove(curTimer); |
| 380 | } |
| 381 | } |
| 382 | catch (const Firebird::Exception& ex) |
| 383 | { |
| 384 | ex.stuffException(status); |
| 385 | } |
| 386 | } |
| 387 | }; |
| 388 | |
| 389 | ITimerControl* MasterImplementation::getTimerControl() |
nothing calls this directly
no test coverage detected