| 817 | constexpr int kNumSleepThreads = 32; |
| 818 | |
| 819 | std::shared_ptr<ThreadPool> CreateSleepThreadPool() { |
| 820 | Result<std::shared_ptr<ThreadPool>> thread_pool = |
| 821 | ThreadPool::MakeEternal(kNumSleepThreads); |
| 822 | return thread_pool.ValueOrDie(); |
| 823 | } |
| 824 | |
| 825 | } // namespace |
| 826 |
no test coverage detected