Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for stack460 (0.07 sec)

  1. test/heapsampling.go

    func allocObjects(records []runtime.MemProfileRecord, function string) map[int]allocStat {
    	a := make(map[int]allocStat)
    	for _, r := range records {
    		var pcs []uintptr
    		for _, s := range r.Stack0 {
    			if s == 0 {
    				break
    			}
    			pcs = append(pcs, s)
    		}
    		frames := runtime.CallersFrames(pcs)
    		line := 0
    		for {
    			frame, more := frames.Next()
    			name := frame.Function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 27 21:36:06 UTC 2022
    - 9.7K bytes
    - Viewed (0)
Back to top