Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Continuation (0.35 sec)

  1. src/runtime/proc.go

    	gp := getg()
    
    	setMNoWB(&gp.m.curg.m, nil)
    	setGNoWB(&gp.m.curg, nil)
    }
    
    func parkunlock_c(gp *g, lock unsafe.Pointer) bool {
    	unlock((*mutex)(lock))
    	return true
    }
    
    // park continuation on g0.
    func park_m(gp *g) {
    	mp := getg().m
    
    	trace := traceAcquire()
    
    	if trace.ok() {
    		// Trace the event before the transition. It may take a
    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/go/internal/work/exec.go

    					flag = append(flag, '\\', c)
    					escaped = false
    					continue
    				}
    			}
    
    			if c == '\n' {
    				// “If a <newline> follows the <backslash>, the shell shall interpret
    				// this as line continuation.”
    			} else {
    				flag = append(flag, c)
    			}
    			escaped = false
    			continue
    		}
    
    		if quote != 0 && c == quote {
    			quote = 0
    			continue
    		}
    		switch quote {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top