sync/atomic.Uint64.Store (method)

5 uses

	sync/atomic (current package)
		type.go#L172: func (x *Uint64) Store(val uint64) { StoreUint64(&x.v, val) }

	sync
		waitgroup.go#L81: 	wg.state.Store(0)

	net/http
		server.go#L1885: 	c.curState.Store(packedState)

	os
		exec.go#L120: 	p.state.Store(1) // 1 persistent reference
		exec.go#L132: 	p.state.Store(uint64(statusDone)) // No persistent reference, as there is no handle.