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

     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"
    11  	"internal/trace/internal/testgen"
    12  	"internal/trace/tracev2"
    13  	"internal/trace/version"
    14  )
    15  
    16  func main() {
    17  	testgen.Main(version.Go122, gen)
    18  }
    19  
    20  func gen(t *testgen.Trace) {
    21  	g := t.Generation(1)
    22  
    23  	// One goroutine is exiting with a syscall. It already
    24  	// acquired a new P.
    25  	b0 := g.Batch(trace.ThreadID(0), 0)
    26  	b0.Event("ProcStatus", trace.ProcID(1), tracev2.ProcRunning)
    27  	b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), tracev2.GoSyscall)
    28  	b0.Event("GoSyscallEndBlocked")
    29  
    30  	// A bare M stole the goroutine's P at the generation boundary.
    31  	b1 := g.Batch(trace.ThreadID(1), 0)
    32  	b1.Event("ProcStatus", trace.ProcID(0), tracev2.ProcSyscallAbandoned)
    33  	b1.Event("ProcSteal", trace.ProcID(0), testgen.Seq(1), trace.ThreadID(0))
    34  }
    35  

View as plain text