Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for EBADF (0.1 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    	{6, "ENXIO", "no such device or address"},
    	{7, "E2BIG", "argument list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file descriptor"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EAGAIN", "resource temporarily unavailable"},
    	{12, "ENOMEM", "cannot allocate memory"},
    	{13, "EACCES", "permission denied"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    	{6, "ENXIO", "no such device or address"},
    	{7, "E2BIG", "argument list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file descriptor"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EAGAIN", "resource temporarily unavailable"},
    	{12, "ENOMEM", "cannot allocate memory"},
    	{13, "EACCES", "permission denied"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "input/output error"},
    	{6, "ENXIO", "no such device or address"},
    	{7, "E2BIG", "argument list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file descriptor"},
    	{10, "ECHILD", "no child processes"},
    	{11, "EAGAIN", "resource temporarily unavailable"},
    	{12, "ENOMEM", "cannot allocate memory"},
    	{13, "EACCES", "permission denied"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	RENAME_NOREPLACE                = 1 << 0
    )
    
    const (
    	EDOM               = Errno(1)
    	ERANGE             = Errno(2)
    	EACCES             = Errno(111)
    	EAGAIN             = Errno(112)
    	EBADF              = Errno(113)
    	EBUSY              = Errno(114)
    	ECHILD             = Errno(115)
    	EDEADLK            = Errno(116)
    	EEXIST             = Errno(117)
    	EFAULT             = Errno(118)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. src/syscall/fs_wasip1.go

    	// for standard input and outputs.
    	for preopenFd := int32(3); ; preopenFd++ {
    		var prestat prestat
    
    		errno := fd_prestat_get(preopenFd, unsafe.Pointer(&prestat))
    		if errno == EBADF {
    			break
    		}
    		if errno == ENOTDIR || prestat.typ != preopentypeDir {
    			continue
    		}
    		if errno != 0 {
    			panic("fd_prestat: " + errno.Error())
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top