func runtime/internal/atomic.Store

29 uses

	runtime/internal/atomic (current package)
		atomic_amd64.go#L96: func Store(ptr *uint32, val uint32)
		types.go#L214: 	Store(&u.value, value)

	runtime
		mcentral.go#L212: 		atomic.Store(&s.sweepgen, sg-1)
		mcentral.go#L215: 		atomic.Store(&s.sweepgen, sg)
		mem_linux.go#L58: 		atomic.Store(&adviseUnused, _MADV_DONTNEED)
		mem_linux.go#L66: 		atomic.Store(&adviseUnused, madviseUnsupported)
		mfinal.go#L265: 				atomic.Store(&fb.cnt, i-1)
		mgc.go#L235: 	atomic.Store(&gcphase, x)
		mgc.go#L741: 	atomic.Store(&gcBlackenEnabled, 1)
		mgc.go#L914: 	atomic.Store(&gcBlackenEnabled, 0)
		mgcsweep.go#L85: 	atomic.Store((*uint32)(s), 0)
		mgcsweep.go#L699: 	atomic.Store(&s.sweepgen, sweepgen)
		mheap.go#L1418: 		atomic.Store(&s.sweepgen, h.sweepgen)
		proc.go#L1774: 			atomic.Store(&p2.runSafePointFn, 1)
		proc.go#L4048: 	atomic.Store(&pp.status, _Psyscall)
		proc.go#L5312: 	atomic.Store((*uint32)(unsafe.Pointer(int32p)), uint32(nprocs))
		runtime1.go#L537: 	atomic.Store(&traceback_cache, t)
		sema.go#L555: 	atomic.Store(&l.notify, l.wait.Load())
		sema.go#L587: 	atomic.Store(&l.notify, t+1)
		signal_unix.go#L234: 			atomic.Store(&handlingSig[sig], 0)
		signal_unix.go#L255: 		atomic.Store(&handlingSig[sig], 0)
		signal_unix.go#L529: 	atomic.Store(&sigprofCallersUse, 0)
		signal_unix.go#L902: 	atomic.Store(&handlingSig[sig], 0)
		sigqueue.go#L217: 	atomic.Store(&sig.wanted[s/32], w)
		sigqueue.go#L221: 	atomic.Store(&sig.ignored[s/32], i)
		sigqueue.go#L237: 	atomic.Store(&sig.wanted[s/32], w)
		sigqueue.go#L251: 	atomic.Store(&sig.wanted[s/32], w)
		sigqueue.go#L255: 	atomic.Store(&sig.ignored[s/32], i)
		sigqueue.go#L266: 	atomic.Store(&sig.ignored[s/32], i)