| 825 | constexpr int kNumSleepThreads = 32; |
| 826 | |
| 827 | std::shared_ptr<ThreadPool> CreateSleepThreadPool() { |
| 828 | Result<std::shared_ptr<ThreadPool>> thread_pool = |
| 829 | ThreadPool::MakeEternal(kNumSleepThreads); |
| 830 | return thread_pool.ValueOrDie(); |
| 831 | } |
| 832 | |
| 833 | } // namespace |
| 834 |
no test coverage detected