Skip to content

Commit 990de84

Browse files
committed
chore: better atomic using
1 parent ecd8fac commit 990de84

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tunnel/statistic/manager.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,8 @@ func (m *Manager) handle() {
114114
ticker := time.NewTicker(time.Second)
115115

116116
for range ticker.C {
117-
m.uploadBlip.Store(m.uploadTemp.Load())
118-
m.uploadTemp.Store(0)
119-
m.downloadBlip.Store(m.downloadTemp.Load())
120-
m.downloadTemp.Store(0)
117+
m.uploadBlip.Store(m.uploadTemp.Swap(0))
118+
m.downloadBlip.Store(m.downloadTemp.Swap(0))
121119
}
122120
}
123121

0 commit comments

Comments
 (0)