You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

syscall_hurd_386.go 447B

12345678910111213141516171819202122232425262728
  1. // Copyright 2022 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build 386 && hurd
  5. package unix
  6. const (
  7. TIOCGETA = 0x62251713
  8. )
  9. type Winsize struct {
  10. Row uint16
  11. Col uint16
  12. Xpixel uint16
  13. Ypixel uint16
  14. }
  15. type Termios struct {
  16. Iflag uint32
  17. Oflag uint32
  18. Cflag uint32
  19. Lflag uint32
  20. Cc [20]uint8
  21. Ispeed int32
  22. Ospeed int32
  23. }