Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isEAGAIN (0.26 sec)

  1. src/runtime/testdata/testprogcgo/exec.go

    						// Issue #27731.
    						if isEAGAIN(err) {
    							return
    						}
    						fmt.Printf("iteration %d: %v\n", j, err)
    						os.Exit(1)
    					}
    				}(j)
    				signal.Stop(c2)
    			}
    		}()
    	}
    	wg.Wait()
    
    	fmt.Println("OK")
    }
    
    // isEAGAIN reports whether err is an EAGAIN error from a process execution.
    func isEAGAIN(err error) bool {
    	if p, ok := err.(*fs.PathError); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 2.1K bytes
    - Viewed (0)
Back to top