Merge pull request #380 from ufownl:bugfix/threading

PiperOrigin-RevId: 676799495
This commit is contained in:
Copybara-Service 2024-09-20 04:52:48 -07:00
commit 09bc8d62cc
3 changed files with 2 additions and 2 deletions

View File

@ -143,8 +143,8 @@ class PerClusterPools {
PerClusterPools() = delete;
PerClusterPools(const PerClusterPools&) = delete;
PerClusterPools& operator=(const PerClusterPools&) = delete;
PerClusterPools(PerClusterPools&&) = default;
PerClusterPools& operator=(PerClusterPools&&) = default;
PerClusterPools(PerClusterPools&&) = delete;
PerClusterPools& operator=(PerClusterPools&&) = delete;
// PerClusterPools supports spin waits (see StartSpinning below). To prevent
// drastic slowdowns caused by excessive user-specified thread counts, which