// Copyright 2018 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package atomicbitops import ( "runtime" "sync" "testing" ) const iterations = 100 func detectRaces32(val, target uint32, fn func(*uint32, uint32)) bool { runtime.GOMAXPROCS(100) for n := 0; n < iterations; n++ { x := val var wg sync.WaitGroup for i := uint32(0); i < 32; i++ { wg.Add(1) go func(a *uint32, i uint32) { defer wg.Done() fn(a, uint32(1<