| 23 | } |
| 24 | |
| 25 | void Handlers::MyEventShutdownHandler(sml::smlSystemEventId, void* pUserData, sml::Kernel*) |
| 26 | { |
| 27 | CPPUNIT_ASSERT(pUserData); |
| 28 | soar_thread::Event* pEvent = static_cast< soar_thread::Event* >(pUserData); |
| 29 | pEvent->TriggerEvent(); |
| 30 | } |
| 31 | |
| 32 | void Handlers::MyShutdownTestShutdownHandler(sml::smlSystemEventId, void* pUserData, sml::Kernel* pKernel) |
| 33 | { |
nothing calls this directly
no test coverage detected