Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BlockProfileRecord (1.94 sec)

  1. src/runtime/mprof.go

    		mp := b.mp()
    		fn(b, b.nstk, &b.stk()[0], b.size, mp.active.allocs, mp.active.frees)
    	}
    	unlock(&profMemActiveLock)
    }
    
    // BlockProfileRecord describes blocking events originated
    // at a particular call sequence (stack trace).
    type BlockProfileRecord struct {
    	Count  int64
    	Cycles int64
    	StackRecord
    }
    
    // BlockProfile returns n, the number of records in the current blocking profile.
    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