mirror of https://github.com/Icinga/icinga2.git
Make IoEngine::m_CpuBoundSemaphore signed
This commit is contained in:
parent
326bf66255
commit
b384f859c9
|
@ -102,7 +102,7 @@ private:
|
||||||
boost::asio::io_service::work m_KeepAlive;
|
boost::asio::io_service::work m_KeepAlive;
|
||||||
std::vector<std::thread> m_Threads;
|
std::vector<std::thread> m_Threads;
|
||||||
boost::asio::deadline_timer m_AlreadyExpiredTimer;
|
boost::asio::deadline_timer m_AlreadyExpiredTimer;
|
||||||
std::atomic_uint_fast32_t m_CpuBoundSemaphore;
|
std::atomic_int_fast32_t m_CpuBoundSemaphore;
|
||||||
};
|
};
|
||||||
|
|
||||||
class TerminateIoThread : public std::exception
|
class TerminateIoThread : public std::exception
|
||||||
|
|
Loading…
Reference in New Issue