| 234 | } |
| 235 | |
| 236 | void Handlers::MyInterruptHandler(sml::smlRunEventId, void* pUserData, sml::Agent* pAgent, sml::smlPhase) |
| 237 | { |
| 238 | pAgent->GetKernel()->StopAllAgents() ; |
| 239 | |
| 240 | CPPUNIT_ASSERT(pUserData); |
| 241 | bool* pHandlerReceived = static_cast< bool* >(pUserData); |
| 242 | *pHandlerReceived = true; |
| 243 | } |
| 244 | |
| 245 | std::string Handlers::MyRhsFunctionHandler(sml::smlRhsEventId, void* pUserData, sml::Agent*, char const*, char const* pArgument) |
| 246 | { |
nothing calls this directly
no test coverage detected