----------------------------------------------------------------------------- Returns a pointer to the requested node without locking. Only to be used by main thread code. -----------------------------------------------------------------------------
| 920 | // Only to be used by main thread code. |
| 921 | //----------------------------------------------------------------------------- |
| 922 | Node* Driver::GetNodeUnsafe |
| 923 | ( |
| 924 | uint8 _nodeId |
| 925 | ) |
| 926 | { |
| 927 | if( Node* node = m_nodes[_nodeId] ) |
| 928 | { |
| 929 | return node; |
| 930 | } |
| 931 | return NULL; |
| 932 | } |
| 933 | |
| 934 | //----------------------------------------------------------------------------- |
| 935 | // <Driver::GetNode> |
no outgoing calls
no test coverage detected