Add XBAODE & XSpode classifiers

This commit is contained in:
2025-03-09 19:15:00 +01:00
parent a70ac3e883
commit 06621ea361
7 changed files with 732 additions and 1 deletions

View File

@@ -32,6 +32,14 @@ public:
cv_.notify_one();
}
}
uint getCount() const
{
return count_;
}
uint getMaxCount() const
{
return max_count_;
}
private:
CountingSemaphore()
: max_count_(std::max(1u, static_cast<uint>(0.95 * std::thread::hardware_concurrency()))),