func sync/atomic.StoreUint32
7 uses
sync/atomic (current package)
doc.go#L179: func StoreUint32(addr *uint32, val uint32)
type.go#L20: func (x *Bool) Store(val bool) { StoreUint32(&x.v, b32(val)) }
type.go#L124: func (x *Uint32) Store(val uint32) { StoreUint32(&x.v, val) }
sync
once.go#L73: defer atomic.StoreUint32(&o.done, 1)
github.com/gotd/td/internal/rpc
engine.go#L270: atomic.StoreUint32(&e.closed, 1)
go.uber.org/atomic
uint32.go#L82: atomic.StoreUint32(&i.v, val)
internal/poll
fd_unix.go#L128: atomic.StoreUint32(&fd.isBlocking, 1)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |