Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for playground (0.33 sec)

  1. src/runtime/proc.go

    		unlock(&sched.lock) // unlock so that GODEBUG=scheddetail=1 doesn't hang
    		fatal("no goroutines (main called runtime.Goexit) - deadlock!")
    	}
    
    	// Maybe jump time forward for playground.
    	if faketime != 0 {
    		if when := timeSleepUntil(); when < maxWhen {
    			faketime = when
    
    			// Start an M to steal the timer.
    			pp, _ := pidleget(faketime)
    			if pp == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    				// should ensure that this segment's
    				// VA ≡ Fileoff mod FlagRound.
    				seg.Fileoff = uint64(Rnd(int64(prev.Fileoff+prev.Filelen), *FlagRound))
    				if seg.Vaddr%uint64(*FlagRound) != seg.Fileoff%uint64(*FlagRound) {
    					Exitf("bad segment rounding (Vaddr=%#x Fileoff=%#x FlagRound=%#x)", seg.Vaddr, seg.Fileoff, *FlagRound)
    				}
    			case objabi.Hwindows:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top