mirror of
https://github.com/Icinga/icinga2.git
synced 2026-06-09 00:32:12 -04:00
Add missing default implementation for DynamicObject::Stop().
This commit is contained in:
parent
d7492ab823
commit
fc337a51e7
1 changed files with 7 additions and 0 deletions
|
|
@ -405,6 +405,13 @@ void DynamicObject::Start(void)
|
|||
/* Nothing to do here. */
|
||||
}
|
||||
|
||||
void DynamicObject::Stop(void)
|
||||
{
|
||||
ASSERT(!OwnsLock());
|
||||
|
||||
/* Nothing to do here. */
|
||||
}
|
||||
|
||||
void DynamicObject::Unregister(void)
|
||||
{
|
||||
ASSERT(!OwnsLock());
|
||||
|
|
|
|||
Loading…
Reference in a new issue