Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GoSyscallEnd (0.27 sec)

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

    		Name:         "GoSyscallBegin",
    		Args:         []string{"dt", "p_seq", "stack"},
    		IsTimedEvent: true,
    		StackIDs:     []int{2},
    	},
    	EvGoSyscallEnd: event.Spec{
    		Name:         "GoSyscallEnd",
    		Args:         []string{"dt"},
    		StartEv:      EvGoSyscallBegin,
    		IsTimedEvent: true,
    	},
    	EvGoSyscallEndBlocked: event.Spec{
    		Name:         "GoSyscallEndBlocked",
    		Args:         []string{"dt"},
    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/internal/trace/oldtrace.go

    // be reordered. Some events, such as GoWaiting need to look ahead for follow-up
    // events to determine the correct translation. GoSyscall, which is an
    // instantaneous event, gets turned into a 1 ns long pair of
    // GoSyscallStart+GoSyscallEnd, unless we observe a GoSysBlock, in which case we
    // emit a GoSyscallStart+GoSyscallEndBlocked pair with the correct duration
    // (i.e. starting at the original GoSyscall).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. src/runtime/traceruntime.go

    	pp := tl.mp.p.ptr()
    	pp.trace.mSyscallID = int64(tl.mp.procid)
    	tl.eventWriter(traceGoRunning, traceProcRunning).commit(traceEvGoSyscallBegin, pp.trace.nextSeq(tl.gen), tl.stack(1))
    }
    
    // GoSysExit emits a GoSyscallEnd event, possibly along with a GoSyscallBlocked event
    // if lostP is true.
    //
    // lostP must be true in all cases that a goroutine loses its P during a syscall.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/tests/go122-annotations-stress.test

    GoStart dt=211 g=18 g_seq=1
    GoBlock dt=3533 reason_string=12 stack=21
    GoStart dt=41 g=21 g_seq=1
    GoBlock dt=150 reason_string=10 stack=22
    GoStart dt=93 g=20 g_seq=1
    GoSyscallBegin dt=51 p_seq=2 stack=23
    GoSyscallEnd dt=400
    GoBlock dt=582 reason_string=15 stack=25
    GoStart dt=26 g=23 g_seq=1
    HeapAlloc dt=50 heapalloc_value=1646592
    UserRegionBegin dt=2921 task=5 name_string=31 stack=26
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
Back to top