Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for goroutineErr (0.45 sec)

  1. src/os/exec/exec.go

    			prefix: "exec: killing Cmd",
    			err:    killErr,
    		}
    	}
    
    	if c.goroutineErr != nil {
    		select {
    		case goroutineErr := <-c.goroutineErr:
    			// Forward goroutineErr only if we don't have reason to believe it was
    			// caused by a call to Cancel or Kill above.
    			if err == nil && !killed {
    				err = goroutineErr
    			}
    		default:
    			// Close the child process's I/O pipes, in case it abandoned some
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top