Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for sched (0.05 sec)

  1. src/runtime/heapdump.go

    	}
    	return
    }
    
    func dumpgoroutine(gp *g) {
    	var sp, pc, lr uintptr
    	if gp.syscallsp != 0 {
    		sp = gp.syscallsp
    		pc = gp.syscallpc
    		lr = 0
    	} else {
    		sp = gp.sched.sp
    		pc = gp.sched.pc
    		lr = gp.sched.lr
    	}
    
    	dumpint(tagGoroutine)
    	dumpint(uint64(uintptr(unsafe.Pointer(gp))))
    	dumpint(uint64(sp))
    	dumpint(gp.goid)
    	dumpint(uint64(gp.gopc))
    	dumpint(uint64(readgstatus(gp)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/runtime/lockrank.go

    	lockRankSweep
    	lockRankTestR
    	lockRankTestW
    	lockRankTimerSend
    	lockRankAllocmW
    	lockRankExecW
    	lockRankCpuprof
    	lockRankPollCache
    	lockRankPollDesc
    	lockRankWakeableSleep
    	lockRankHchan
    	// SCHED
    	lockRankAllocmR
    	lockRankExecR
    	lockRankSched
    	lockRankAllg
    	lockRankAllp
    	lockRankNotifyList
    	lockRankSudog
    	lockRankTimers
    	lockRankTimer
    	lockRankNetpollInit
    	lockRankRoot
    	lockRankItab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <net/ip_mroute/ip_mroute.h>
    '
    
    includes_FreeBSD='
    #include <sys/capsicum.h>
    #include <sys/param.h>
    #include <sys/types.h>
    #include <sys/disk.h>
    #include <sys/event.h>
    #include <sys/sched.h>
    #include <sys/select.h>
    #include <sys/socket.h>
    #include <sys/un.h>
    #include <sys/sockio.h>
    #include <sys/stat.h>
    #include <sys/sysctl.h>
    #include <sys/mman.h>
    #include <sys/mount.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. cmd/kube-scheduler/app/server_test.go

    			ctx, cancel := context.WithCancel(context.Background())
    			defer cancel()
    			_, sched, err := Setup(ctx, opts, tc.registryOptions...)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			if tc.wantPlugins != nil {
    				gotPlugins := make(map[string]*config.Plugins)
    				for n, p := range sched.Profiles {
    					gotPlugins[n] = p.ListPlugins()
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    				// gogo's to curg.sched. Match that.
    				// This keeps morestack() from showing up in the backtrace,
    				// but that makes some sense since it'll never be returned
    				// to.
    				gp = gp.m.curg
    				u.g.set(gp)
    				frame.pc = gp.sched.pc
    				frame.fn = findfunc(frame.pc)
    				f = frame.fn
    				flag = f.flag
    				frame.lr = gp.sched.lr
    				frame.sp = gp.sched.sp
    				u.cgoCtxt = len(gp.cgoCtxt) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/runtime/traceruntime.go

    // traceThreadDestroy is called when a thread is removed from
    // sched.freem.
    //
    // mp must not be able to emit trace events anymore.
    //
    // sched.lock must be held to synchronize with traceAdvance.
    func traceThreadDestroy(mp *m) {
    	assertLockHeld(&sched.lock)
    
    	// Flush all outstanding buffers to maintain the invariant
    	// that an M only has active buffers while on sched.freem
    	// or allm.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. src/runtime/mstats.go

    	s.ScavengeAssistTime += scavAssistCpu
    	s.ScavengeBgTime += scavBgCpu
    	s.ScavengeTotalTime += scavAssistCpu + scavBgCpu
    
    	// Update total CPU.
    	s.TotalTime = sched.totaltime + (now-sched.procresizetime)*int64(gomaxprocs)
    	s.IdleTime += sched.idleTime.Load()
    
    	// Compute userTime. We compute this indirectly as everything that's not the above.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. src/runtime/tracestatus.go

    func (r *traceSchedResourceState) readyNextGen(gen uintptr) {
    	nextGen := traceNextGen(gen)
    	r.seq[nextGen%2] = 0
    	r.statusTraced[nextGen%3].Store(0)
    }
    
    // statusWasTraced returns true if the sched resource's status was already acquired for tracing.
    func (r *traceSchedResourceState) statusWasTraced(gen uintptr) bool {
    	return r.statusTraced[gen%3].Load() != 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/runtime/mgclimit.go

    		for _, pp := range allp {
    			typ, duration := pp.limiterEvent.consume(now)
    			switch typ {
    			case limiterEventIdleMarkWork:
    				fallthrough
    			case limiterEventIdle:
    				idleTime += duration
    				sched.idleTime.Add(duration)
    			case limiterEventMarkAssist:
    				fallthrough
    			case limiterEventScavengeAssist:
    				assistTime += duration
    			case limiterEventNone:
    				break
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/runtime/coro.go

    		gnext.lockedm.set(mp)
    	}
    
    	// Release the trace locker. We've completed all the necessary transitions..
    	if trace.ok() {
    		traceRelease(trace)
    	}
    
    	// Switch to gnext. Does not return.
    	gogo(&gnext.sched)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top