func internal/runtime/atomic.CasRel
6 uses
internal/runtime/atomic (current package)
atomic_amd64.go#L111: func CasRel(ptr *uint32, old, new uint32) bool
types.go#L250: return CasRel(&u.value, old, new)
runtime
proc.go#L6755: if !atomic.CasRel(&pp.runqhead, h, h+n) { // cas-release, commits consume
proc.go#L6837: if atomic.CasRel(&pp.runqhead, h, h+1) { // cas-release, commits consume
proc.go#L6863: if !atomic.CasRel(&pp.runqhead, h, h+qn) { // cas-release, commits consume
proc.go#L6932: if atomic.CasRel(&pp.runqhead, h, h+n) { // cas-release, commits consume
 |
The pages are generated with Golds v0.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |