| 311 | |
| 312 | struct thr_init { |
| 313 | thr_init(const dbcontext_ptr& dc, volatile int& shutdown_flag) : dbctx(dc) { |
| 314 | dbctx->init_thread(this, shutdown_flag); |
| 315 | } |
| 316 | ~thr_init() { |
| 317 | dbctx->term_thread(); |
| 318 | } |
nothing calls this directly
no test coverage detected