Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for profIndex (0.14 sec)

  1. src/runtime/profbuf.go

    	profWriteExtra     profIndex = 1 << 33 // overflow or eof waiting
    )
    
    func (x *profAtomic) load() profIndex {
    	return profIndex(atomic.Load64((*uint64)(x)))
    }
    
    func (x *profAtomic) store(new profIndex) {
    	atomic.Store64((*uint64)(x), uint64(new))
    }
    
    func (x *profAtomic) cas(old, new profIndex) bool {
    	return atomic.Cas64((*uint64)(x), uint64(old), uint64(new))
    }
    
    func (x profIndex) dataCount() uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top