func runtime/internal/atomic.CasRel
6 uses
runtime/internal/atomic (current package)
atomic_amd64.go#L93: func CasRel(ptr *uint32, old, new uint32) bool
types.go#L250: return CasRel(&u.value, old, new)
runtime
proc.go#L6246: if !atomic.CasRel(&pp.runqhead, h, h+n) { // cas-release, commits consume
proc.go#L6328: if atomic.CasRel(&pp.runqhead, h, h+1) { // cas-release, commits consume
proc.go#L6354: if !atomic.CasRel(&pp.runqhead, h, h+qn) { // cas-release, commits consume
proc.go#L6423: if atomic.CasRel(&pp.runqhead, h, h+n) { // cas-release, commits consume
|
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. |