mirror of https://github.com/Icinga/icinga2.git
Build fix for 2.3.x
This commit is contained in:
parent
1756bc69a3
commit
f70cebca0c
|
@ -166,7 +166,7 @@ void WorkQueue::ReportExceptions(const String& facility) const
|
||||||
<< exceptions.size() << " error" << (exceptions.size() != 1 ? "s" : "");
|
<< exceptions.size() << " error" << (exceptions.size() != 1 ? "s" : "");
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t WorkQueue::GetLength(void)
|
size_t WorkQueue::GetLength(void) const
|
||||||
{
|
{
|
||||||
boost::mutex::scoped_lock lock(m_Mutex);
|
boost::mutex::scoped_lock lock(m_Mutex);
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,7 @@ public:
|
||||||
|
|
||||||
bool IsWorkerThread(void) const;
|
bool IsWorkerThread(void) const;
|
||||||
|
|
||||||
size_t GetLength(void);
|
size_t GetLength(void) const;
|
||||||
|
|
||||||
void SetExceptionCallback(const ExceptionCallback& callback);
|
void SetExceptionCallback(const ExceptionCallback& callback);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue