* @brief Unregister for a particular event at the kernel *************************************************************/
| 1667 | * @brief Unregister for a particular event at the kernel |
| 1668 | *************************************************************/ |
| 1669 | void Kernel::UnregisterForEventWithKernel(int id, char const* pAgentName) |
| 1670 | { |
| 1671 | AnalyzeXML response ; |
| 1672 | |
| 1673 | char const* pEvent = m_pEventMap->ConvertToString(id) ; |
| 1674 | |
| 1675 | // Send the unregister command |
| 1676 | GetConnection()->SendAgentCommand(&response, sml_Names::kCommand_UnregisterForEvent, pAgentName, sml_Names::kParamEventID, pEvent) ; |
| 1677 | } |
| 1678 | |
| 1679 | class Kernel::TestSystemCallback : public SystemEventMap::ValueTest |
| 1680 | { |
no test coverage detected