| 311 | } |
| 312 | |
| 313 | ~LockTableGuard() |
| 314 | { |
| 315 | try |
| 316 | { |
| 317 | if (m_owner) |
| 318 | m_lm->release_shmem(m_owner); |
| 319 | |
| 320 | m_lm->m_localMutex.leave(); |
| 321 | } |
| 322 | catch (const Firebird::Exception&) |
| 323 | { |
| 324 | DtorException::devHalt(); |
| 325 | } |
| 326 | } |
| 327 | |
| 328 | void setOwner(SLONG owner) |
| 329 | { |
nothing calls this directly
no test coverage detected