Add missing default implementation for DynamicObject::Stop().

This commit is contained in:
Gunnar Beutner 2013-03-12 14:01:11 +01:00
parent d7492ab823
commit fc337a51e7
1 changed files with 7 additions and 0 deletions

View File

@ -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());