Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TCGETS (0.39 sec)

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

    	return &value, err
    }
    
    // IoctlGetTermios performs an ioctl on fd with a *Termios.
    //
    // The req value is expected to be TCGETS
    func IoctlGetTermios(fd int, req int) (*Termios, error) {
    	var value Termios
    	if req != TCGETS {
    		return &value, ENOSYS
    	}
    	err := Tcgetattr(fd, &value)
    	return &value, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/term/term_unix_other.go

    // license that can be found in the LICENSE file.
    
    //go:build aix || linux || solaris || zos
    
    package term
    
    import "golang.org/x/sys/unix"
    
    const ioctlReadTermios = unix.TCGETS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 324 bytes
    - Viewed (0)
Back to top