Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for blockProfile (0.21 sec)

  1. src/runtime/pprof/pprof.go

    	name:  "heap",
    	count: countHeap,
    	write: writeHeap,
    }
    
    var allocsProfile = &Profile{
    	name:  "allocs",
    	count: countHeap, // identical to heap profile
    	write: writeAlloc,
    }
    
    var blockProfile = &Profile{
    	name:  "block",
    	count: countBlock,
    	write: writeBlock,
    }
    
    var mutexProfile = &Profile{
    	name:  "mutex",
    	count: countMutex,
    	write: writeMutex,
    }
    
    func lockProfiles() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/testflag.go

    	// to build the test in a way that supports the use of the flag.
    
    	cf.StringVar(&testBench, "bench", "", "")
    	cf.Bool("benchmem", false, "")
    	cf.String("benchtime", "", "")
    	cf.StringVar(&testBlockProfile, "blockprofile", "", "")
    	cf.String("blockprofilerate", "", "")
    	cf.Int("count", 0, "")
    	cf.String("cpu", "", "")
    	cf.StringVar(&testCPUProfile, "cpuprofile", "", "")
    	cf.BoolVar(&testFailFast, "failfast", false, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. src/runtime/runtime2.go

    	lockedExt     uint32      // tracking for external LockOSThread
    	lockedInt     uint32      // tracking for internal lockOSThread
    	nextwaitm     muintptr    // next m waiting for lock
    
    	mLockProfile mLockProfile // fields relating to runtime.lock contention
    	profStack    []uintptr    // used for memory/block/mutex stack traces
    
    	// wait* are used to carry arguments from gopark into park_m, because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top