Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nyaris (0.23 sec)

  1. src/cmd/cgo/gcc.go

    	nargs := make([]string, 0, len(args)+len(extraArgs))
    	for _, arg := range args {
    		if !strings.HasPrefix(arg, "-O") {
    			nargs = append(nargs, arg)
    		}
    	}
    
    	// Force -O0 optimization and append extra arguments, but keep the
    	// trailing "-" at the end.
    	li := len(nargs) - 1
    	last := nargs[li]
    	nargs[li] = "-O0"
    	nargs = append(nargs, extraArgs...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    func gcWaitOnMark(n uint32) {
    	for {
    		// Disable phase transitions.
    		lock(&work.sweepWaiters.lock)
    		nMarks := work.cycles.Load()
    		if gcphase != _GCmark {
    			// We've already completed this cycle's mark.
    			nMarks++
    		}
    		if nMarks > n {
    			// We're done.
    			unlock(&work.sweepWaiters.lock)
    			return
    		}
    
    		// Wait until sweep termination, mark, and mark
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top