...

Source file src/internal/trace/v2/testdata/generators/go122-syscall-steal-proc-gen-boundary.go

Documentation: internal/trace/v2/testdata/generators

     1  // Copyright 2023 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  // Tests syscall P stealing at a generation boundary.
     6  
     7  package main
     8  
     9  import (
    10  	"internal/trace/v2"
    11  	"internal/trace/v2/event/go122"
    12  	testgen "internal/trace/v2/internal/testgen/go122"
    13  )
    14  
    15  func main() {
    16  	testgen.Main(gen)
    17  }
    18  
    19  func gen(t *testgen.Trace) {
    20  	g := t.Generation(1)
    21  
    22  	// One goroutine is exiting with a syscall. It already
    23  	// acquired a new P.
    24  	b0 := g.Batch(trace.ThreadID(0), 0)
    25  	b0.Event("ProcStatus", trace.ProcID(1), go122.ProcRunning)
    26  	b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoSyscall)
    27  	b0.Event("GoSyscallEndBlocked")
    28  
    29  	// A running goroutine stole P0 at the generation boundary.
    30  	b1 := g.Batch(trace.ThreadID(1), 0)
    31  	b1.Event("ProcStatus", trace.ProcID(2), go122.ProcRunning)
    32  	b1.Event("GoStatus", trace.GoID(2), trace.ThreadID(1), go122.GoRunning)
    33  	b1.Event("ProcStatus", trace.ProcID(0), go122.ProcSyscallAbandoned)
    34  	b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(1), trace.ThreadID(0))
    35  }
    36  

View as plain text