Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GoDestroySyscall (0.2 sec)

  1. src/internal/trace/event/go122/event.go

    		IsTimedEvent: true,
    	},
    	EvGoDestroy: event.Spec{
    		Name:         "GoDestroy",
    		Args:         []string{"dt"},
    		IsTimedEvent: true,
    	},
    	EvGoDestroySyscall: event.Spec{
    		Name:         "GoDestroySyscall",
    		Args:         []string{"dt"},
    		IsTimedEvent: true,
    	},
    	EvGoStop: event.Spec{
    		Name:         "GoStop",
    		Args:         []string{"dt", "reason_string", "stack"},
    		IsTimedEvent: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. src/runtime/traceruntime.go

    }
    
    // GoDestroySyscall indicates that a goroutine has transitioned from GoSyscall to dead.
    //
    // Must not have a P.
    //
    // This occurs when Go code returns back to C. On pthread platforms it occurs only when
    // the C thread is destroyed.
    func (tl traceLocker) GoDestroySyscall() {
    	// N.B. If we trace a status here, we must never have a P, and we must be on a goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top