----------------------------------------------------------------------------- Return per node statistics -----------------------------------------------------------------------------
| 6940 | // Return per node statistics |
| 6941 | //----------------------------------------------------------------------------- |
| 6942 | void Driver::GetNodeStatistics |
| 6943 | ( |
| 6944 | uint8 const _nodeId, |
| 6945 | Node::NodeData* _data |
| 6946 | ) |
| 6947 | { |
| 6948 | LockGuard LG(m_nodeMutex); |
| 6949 | Node* node = GetNode( _nodeId ); |
| 6950 | if( node != NULL ) |
| 6951 | { |
| 6952 | node->GetNodeStatistics( _data ); |
| 6953 | } |
| 6954 | } |
| 6955 | |
| 6956 | //----------------------------------------------------------------------------- |
| 6957 | // <Driver::LogDriverStatistics> |
no outgoing calls
no test coverage detected