Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for doCreate (0.15 sec)

  1. src/cmd/trace/testdata/go122.test

    HeapAlloc dt=24 heapalloc_value=26336904
    GoCreate dt=72 new_g=34 new_stack=47 stack=48
    GoCreate dt=183 new_g=35 new_stack=47 stack=48
    GoCreate dt=15 new_g=36 new_stack=47 stack=48
    GoCreate dt=12 new_g=37 new_stack=47 stack=48
    GoCreate dt=14 new_g=38 new_stack=47 stack=48
    HeapAlloc dt=25 heapalloc_value=26344200
    GoCreate dt=9 new_g=39 new_stack=47 stack=48
    GoCreate dt=13 new_g=40 new_stack=47 stack=48
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    		pp.goidcache -= _GoidCacheBatch - 1
    		pp.goidcacheend = pp.goidcache + _GoidCacheBatch
    	}
    	newg.goid = pp.goidcache
    	pp.goidcache++
    	newg.trace.reset()
    	if trace.ok() {
    		trace.GoCreate(newg, newg.startpc, parked)
    		traceRelease(trace)
    	}
    
    	// Set up race context.
    	if raceenabled {
    		newg.racectx = racegostart(callerpc)
    		newg.raceignore = 0
    		if newg.labels != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top