Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GoroutineStackAlloc (0.22 sec)

  1. src/runtime/traceallocfree.go

    	tl.eventWriter(traceGoRunning, traceProcRunning).commit(traceEvGoroutineStack, traceGoroutineStackID(base), order)
    }
    
    // GoroutineStackAlloc records that a goroutine stack was newly allocated at address base with the provided size..
    func (tl traceLocker) GoroutineStackAlloc(base, size uintptr) {
    	order := traceCompressStackSize(size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/internal/trace/event/go122/event.go

    		Name:         "GoroutineStack",
    		Args:         []string{"dt", "id", "order"},
    		IsTimedEvent: true,
    		Experiment:   AllocFree,
    	},
    	EvGoroutineStackAlloc: event.Spec{
    		Name:         "GoroutineStackAlloc",
    		Args:         []string{"dt", "id", "order"},
    		IsTimedEvent: true,
    		Experiment:   AllocFree,
    	},
    	EvGoroutineStackFree: event.Spec{
    		Name:         "GoroutineStackFree",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. src/runtime/stack.go

    			}
    			osStackAlloc(s)
    			s.elemsize = uintptr(n)
    		}
    		v = unsafe.Pointer(s.base())
    	}
    
    	if traceAllocFreeEnabled() {
    		trace := traceTryAcquire()
    		if trace.ok() {
    			trace.GoroutineStackAlloc(uintptr(v), uintptr(n))
    			traceRelease(trace)
    		}
    	}
    	if raceenabled {
    		racemalloc(v, uintptr(n))
    	}
    	if msanenabled {
    		msanmalloc(v, uintptr(n))
    	}
    	if asanenabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top