Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ioctl (0.03 sec)

  1. src/syscall/zerrors_solaris_amd64.go

    	18:  "cross-device link",
    	19:  "no such device",
    	20:  "not a directory",
    	21:  "is a directory",
    	22:  "invalid argument",
    	23:  "file table overflow",
    	24:  "too many open files",
    	25:  "inappropriate ioctl for device",
    	26:  "text file busy",
    	27:  "file too large",
    	28:  "no space left on device",
    	29:  "illegal seek",
    	30:  "read-only file system",
    	31:  "too many links",
    	32:  "broken pipe",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func ioctl(fd int, req int, arg uintptr) (err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_IOCTL<<4, uintptr(fd), uintptr(req), uintptr(arg))
    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //sys   mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos int64) (ret uintptr, err error) = SYS_MMAP
    //sys   munmap(addr uintptr, length uintptr) (err error) = SYS_MUNMAP
    //sys   ioctl(fd int, req int, arg uintptr) (err error) = SYS_IOCTL
    //sys   ioctlPtr(fd int, req int, arg unsafe.Pointer) (err error) = SYS_IOCTL
    //sys	shmat(id int, addr uintptr, flag int) (ret uintptr, err error) = SYS_SHMAT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top