mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-05 14:13:30 +03:00
Style: use atomic CompareAndSwap (#151)
This commit is contained in:
parent
791d72e05b
commit
d1f6886558
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ func (u *URLTest) fallback() {
|
|||
}
|
||||
|
||||
func (u *URLTest) speedTest() {
|
||||
if atomic.AddInt32(&u.once, 1) != 1 {
|
||||
if atomic.CompareAndSwapInt32(&u.once, 0, 1) {
|
||||
return
|
||||
}
|
||||
defer atomic.StoreInt32(&u.once, 0)
|
||||
|
|
Loading…
Add table
Reference in a new issue