Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for gcStart (0.13 sec)

  1. src/internal/trace/testdata/tests/go122-annotations.test

    ProcStart dt=505 p=1 p_seq=1
    GoStart dt=303 g=7 g_seq=1
    HeapAlloc dt=646 heapalloc_value=1892352
    HeapAlloc dt=149 heapalloc_value=1900544
    GoBlock dt=146 reason_string=12 stack=24
    GoStart dt=14 g=6 g_seq=1
    HeapAlloc dt=16 heapalloc_value=1908736
    GoBlock dt=347 reason_string=12 stack=25
    EventBatch gen=1 m=167928 time=28113086279032 size=10
    ProcStart dt=451 p=2 p_seq=1
    GoStart dt=188 g=8 g_seq=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    	b0 := g1.Batch(trace.ThreadID(0), 0)
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b0.Event("GoCreate", trace.GoID(5), testgen.NoStack, testgen.NoStack)
    	b0.Event("GoStart", trace.GoID(5), testgen.Seq(1))
    	b0.Event("GoStop", "whatever", testgen.NoStack)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  3. src/internal/trace/testdata/generators/go122-create-syscall-with-p.go

    	b0.Event("GoCreateSyscall", trace.GoID(4))
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcIdle)
    	b0.Event("ProcStart", trace.ProcID(0), testgen.Seq(1))
    	b0.Event("GoSyscallEndBlocked")
    	b0.Event("GoStart", trace.GoID(4), testgen.Seq(1))
    	b0.Event("GoSyscallBegin", testgen.Seq(2), testgen.NoStack)
    	b0.Event("GoDestroySyscall")
    	b0.Event("GoCreateSyscall", trace.GoID(4))
    	b0.Event("GoSyscallEnd")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/generators/go122-create-syscall-reuse-thread-id.go

    	b0.Event("GoSyscallEndBlocked")
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcIdle)
    	b0.Event("ProcStart", trace.ProcID(0), testgen.Seq(1))
    	b0.Event("GoStatus", trace.GoID(4), trace.NoThread, go122.GoRunnable)
    	b0.Event("GoStart", trace.GoID(4), testgen.Seq(1))
    	b0.Event("GoSyscallBegin", testgen.Seq(2), testgen.NoStack)
    	b0.Event("GoDestroySyscall")
    
    	// A new Go-created thread with the same ID appears and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/runtime/traceevent.go

    // goroutine or P.
    //
    // Callers can elect to pass a constant value here if the status is clear (e.g. a goroutine must have
    // been Runnable before a GoStart). Otherwise, callers can query the status of either the goroutine
    // or P and pass the appropriate status.
    //
    // In this case, the default status should be traceGoBad or traceProcBad to help identify bugs sooner.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top