Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GoCreateSyscall (0.17 sec)

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

    		Name:         "GoCreate",
    		Args:         []string{"dt", "new_g", "new_stack", "stack"},
    		IsTimedEvent: true,
    		StackIDs:     []int{3, 2},
    	},
    	EvGoCreateSyscall: event.Spec{
    		Name:         "GoCreateSyscall",
    		Args:         []string{"dt", "new_g"},
    		IsTimedEvent: true,
    	},
    	EvGoStart: event.Spec{
    		Name:         "GoStart",
    		Args:         []string{"dt", "g", "g_seq"},
    		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

    }
    
    // GoCreateSyscall indicates that a goroutine has transitioned from dead to GoSyscall.
    //
    // Unlike GoCreate, the caller must be running on gp.
    //
    // This occurs when C code calls into Go. On pthread platforms it occurs only when
    // a C thread calls into Go code for the first time.
    func (tl traceLocker) GoCreateSyscall(gp *g) {
    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