As the title says. basically what I'm wondering is that will the atomic.StoreInt32 also lock read operation while it's writing?
Another relative question:, is atomic.StoreUint64(&procRate, procCount)
equivalent to atomic.StoreUint64(&procRate, atomic.LoadUint64(&procCount))
?
Thanks in advance.