Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for gcStart (0.13 sec)

  1. 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)
  2. src/internal/trace/event/go122/event.go

    	},
    	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,
    	},
    	EvGoDestroy: event.Spec{
    		Name:         "GoDestroy",
    		Args:         []string{"dt"},
    		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)
  3. src/internal/trace/oldtrace.go

    			it.preInit = false
    			for gid := range it.createdPreInit {
    				// These are goroutines that already existed when tracing started but for which we
    				// received neither GoWaiting, GoInSyscall, or GoStart. These are goroutines that are in
    				// the states _Gidle or _Grunnable.
    				it.extra = append(it.extra, Event{
    					ctx: schedCtx{
    						// G: GoID(gid),
    						G: NoGoroutine,
    						P: NoProc,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	CS7                           = 0x20
    	CS8                           = 0x30
    	CSIOCGIFCONF                  = -0x3fef96dc
    	CSIZE                         = 0x30
    	CSMAP_DIR                     = "/usr/lib/nls/csmap/"
    	CSTART                        = '\021'
    	CSTOP                         = '\023'
    	CSTOPB                        = 0x40
    	CSUSP                         = 0x1a
    	ECHO                          = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    	seq := makeSeq(gen, ev.args[1])
    	state, ok := o.gStates[gid]
    	if !ok || state.status != go122.GoRunnable || !seq.succeeds(state.seq) {
    		// We can't make an inference as to whether this is bad. We could just be seeing
    		// a GoStart on a different M before the goroutine was created, before it had its
    		// state emitted, or before we got to the right point in the trace yet.
    		return curCtx, false, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. src/syscall/zerrors_solaris_amd64.go

    	CS5                           = 0x0
    	CS6                           = 0x10
    	CS7                           = 0x20
    	CS8                           = 0x30
    	CSIZE                         = 0x30
    	CSTART                        = 0x11
    	CSTOP                         = 0x13
    	CSTOPB                        = 0x40
    	CSUSP                         = 0x1a
    	CSWTCH                        = 0x1a
    	DLT_AIRONET_HEADER            = 0x78
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  7. src/syscall/zerrors_openbsd_ppc64.go

    	CS5                               = 0x0
    	CS6                               = 0x100
    	CS7                               = 0x200
    	CS8                               = 0x300
    	CSIZE                             = 0x300
    	CSTART                            = 0x11
    	CSTATUS                           = 0xff
    	CSTOP                             = 0x13
    	CSTOPB                            = 0x400
    	CSUSP                             = 0x1a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 67.1K bytes
    - Viewed (0)
  8. src/syscall/zerrors_openbsd_riscv64.go

    	CS5                               = 0x0
    	CS6                               = 0x100
    	CS7                               = 0x200
    	CS8                               = 0x300
    	CSIZE                             = 0x300
    	CSTART                            = 0x11
    	CSTATUS                           = 0xff
    	CSTOP                             = 0x13
    	CSTOPB                            = 0x400
    	CSUSP                             = 0x1a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 67.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	CS7                           = 0x20
    	CS8                           = 0x30
    	CSIOCGIFCONF                  = -0x3ff796dc
    	CSIZE                         = 0x30
    	CSMAP_DIR                     = "/usr/lib/nls/csmap/"
    	CSTART                        = '\021'
    	CSTOP                         = '\023'
    	CSTOPB                        = 0x40
    	CSUSP                         = 0x1a
    	ECHO                          = 0x8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	CS5                           = 0x0
    	CS6                           = 0x10
    	CS7                           = 0x20
    	CS8                           = 0x30
    	CSIZE                         = 0x30
    	CSTART                        = 0x11
    	CSTATUS                       = 0x14
    	CSTOP                         = 0x13
    	CSTOPB                        = 0x40
    	CSUSP                         = 0x1a
    	CSWTCH                        = 0x1a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
Back to top