GetSpill returns Spill atomically.
()
| 856 | |
| 857 | // GetSpill returns Spill atomically. |
| 858 | func (s *TxStats) GetSpill() int64 { |
| 859 | return atomic.LoadInt64(&s.Spill) |
| 860 | } |
| 861 | |
| 862 | // IncSpill increases Spill atomically and returns the new value. |
| 863 | func (s *TxStats) IncSpill(delta int64) int64 { |
no outgoing calls