diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-08-25 22:36:08 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-25 22:36:08 +0000 |
commit | 4675b0cd11210c0325927c779b6c0d2247c20e57 (patch) | |
tree | 245ac0c06f650f7d526b9da132acf0efdaa9a985 /pkg/abi/linux/tty.go | |
parent | 80c5363705ae7b01bee221d9eb698a6db1085ccf (diff) | |
parent | 430487c9e7cb4425def8605c6730aa4a168b000d (diff) |
Merge release-20200818.0-52-g430487c9e (automated)
Diffstat (limited to 'pkg/abi/linux/tty.go')
-rw-r--r-- | pkg/abi/linux/tty.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/abi/linux/tty.go b/pkg/abi/linux/tty.go index 8ac02aee8..e640969a6 100644 --- a/pkg/abi/linux/tty.go +++ b/pkg/abi/linux/tty.go @@ -23,6 +23,8 @@ const ( ) // Winsize is struct winsize, defined in uapi/asm-generic/termios.h. +// +// +marshal type Winsize struct { Row uint16 Col uint16 @@ -31,6 +33,8 @@ type Winsize struct { } // Termios is struct termios, defined in uapi/asm-generic/termbits.h. +// +// +marshal type Termios struct { InputFlags uint32 OutputFlags uint32 |