| 697 | } |
| 698 | |
| 699 | void SetWorkerThreadCount(int count) { |
| 700 | if (count < 1) count = 1; |
| 701 | g_workerThreadCount.store(count); |
| 702 | } |
| 703 | |
| 704 | void Shutdown() { |
| 705 | g_shuttingDown.store(true, std::memory_order_seq_cst); |
nothing calls this directly
no outgoing calls
no test coverage detected