Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for subbuckets (0.21 sec)

  1. src/runtime/mprof.go

    // which is used in blocking and mutex profiles.
    type blockRecord struct {
    	count  float64
    	cycles int64
    }
    
    var (
    	mbuckets atomic.UnsafePointer // *bucket, memory profile buckets
    	bbuckets atomic.UnsafePointer // *bucket, blocking profile buckets
    	xbuckets atomic.UnsafePointer // *bucket, mutex profile buckets
    	buckhash atomic.UnsafePointer // *buckhashArray
    
    	mProfCycle mProfCycleHolder
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top