IncNodeCount increases NodeCount atomically and returns the new value.
(delta int64)
| 811 | |
| 812 | // IncNodeCount increases NodeCount atomically and returns the new value. |
| 813 | func (s *TxStats) IncNodeCount(delta int64) int64 { |
| 814 | return atomic.AddInt64(&s.NodeCount, delta) |
| 815 | } |
| 816 | |
| 817 | // GetNodeDeref returns NodeDeref atomically. |
| 818 | func (s *TxStats) GetNodeDeref() int64 { |
no outgoing calls