----------------------------------------------------------------------------- Remove a Device from the Network. -----------------------------------------------------------------------------
| 4201 | // Remove a Device from the Network. |
| 4202 | //----------------------------------------------------------------------------- |
| 4203 | bool Manager::RemoveNode |
| 4204 | ( |
| 4205 | uint32 const _homeId |
| 4206 | ) |
| 4207 | { |
| 4208 | if (Driver *driver = GetDriver( _homeId ) ) { |
| 4209 | LockGuard LG(driver->m_nodeMutex); |
| 4210 | return driver->BeginControllerCommand( |
| 4211 | Driver::ControllerCommand_RemoveDevice, |
| 4212 | NULL, NULL, true, 0, 0); |
| 4213 | } |
| 4214 | return false; |
| 4215 | } |
| 4216 | |
| 4217 | //----------------------------------------------------------------------------- |
| 4218 | // <Manager::RemoveFailedNode> |
nothing calls this directly
no test coverage detected