| 346 | } |
| 347 | |
| 348 | void CryptoManager::shutdown(thread_db* tdbb) |
| 349 | { |
| 350 | terminateCryptThread(tdbb, false); |
| 351 | |
| 352 | if (cryptPlugin) |
| 353 | { |
| 354 | PluginManagerInterfacePtr()->releasePlugin(cryptPlugin); |
| 355 | cryptPlugin = NULL; |
| 356 | } |
| 357 | |
| 358 | LCK_release(tdbb, stateLock); |
| 359 | } |
| 360 | |
| 361 | void CryptoManager::doOnTakenWriteSync(thread_db* tdbb) |
| 362 | { |
nothing calls this directly
no test coverage detected