| 278 | } |
| 279 | |
| 280 | int Manager::shutdown() |
| 281 | { |
| 282 | FbLocalStatus status; |
| 283 | ThreadContextHolder tdbb(&status); |
| 284 | |
| 285 | if (m_connPool) |
| 286 | m_connPool->clear(tdbb); |
| 287 | |
| 288 | for (Provider* prv = m_providers; prv; prv = prv->m_next) { |
| 289 | prv->cancelConnections(); |
| 290 | } |
| 291 | |
| 292 | return 0; |
| 293 | } |
| 294 | |
| 295 | |
| 296 | // Provider |
nothing calls this directly
no test coverage detected