----------------------------------------------------------------------------- Retrieve MetaData about a Node. -----------------------------------------------------------------------------
| 7603 | // Retrieve MetaData about a Node. |
| 7604 | //----------------------------------------------------------------------------- |
| 7605 | Node::ChangeLogEntry const Driver::GetChangeLog |
| 7606 | ( |
| 7607 | uint8 const _nodeId, |
| 7608 | uint32_t revision |
| 7609 | ) |
| 7610 | { |
| 7611 | LockGuard LG(m_nodeMutex); |
| 7612 | Node* node = GetNode( _nodeId ); |
| 7613 | if( node != NULL ) |
| 7614 | { |
| 7615 | return node->GetChangeLog( revision ); |
| 7616 | } |
| 7617 | Node::ChangeLogEntry cle; |
| 7618 | cle.revision = -1; |
| 7619 | return cle; |
| 7620 | } |
| 7621 | |
| 7622 | |
| 7623 | ManufacturerSpecificDB *Driver::GetManufacturerSpecificDB |
nothing calls this directly
no outgoing calls
no test coverage detected