Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/internal/trace/testdata/testprog/cpu-profile.go

    			case "runtime._System", "runtime._GC", "runtime._ExternalCode", "runtime._VDSO":
    				continue
    			}
    			stack := strings.Join(fns, "|")
    			samples := int(s.Value[0])
    			pprofStacks[stack] += samples
    		}
    	}
    	for stack, samples := range pprofStacks {
    		fmt.Fprintf(os.Stderr, "%s\t%d\n", stack, samples)
    	}
    }
    
    func cpuHogger(f func(x int) int, y *int, dur time.Duration) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top