Minor fixes to WaitpidQueue.

This commit is contained in:
Jari Sundell
2026-08-04 17:59:33 +02:00
committed by GitHub
parent f90a96d57a
commit 9ab73352e1
2 changed files with 16 additions and 24 deletions
+2 -2
View File
@@ -29,11 +29,11 @@ private:
std::mutex m_mutex;
std::set<pid_t> m_queue;
bool m_should_shutdown{};
align_cacheline
std::atomic<bool> m_wakeup_worker{};
std::atomic<bool> m_should_shutdown{};
std::atomic<uint32_t> m_remaining{};
};