diff options
author | Ayush Ranjan <ayushranjan@google.com> | 2020-08-25 15:26:54 -0700 |
---|---|---|
committer | Andrei Vagin <avagin@gmail.com> | 2020-09-09 17:53:10 -0700 |
commit | e91164893d6bbaf42639b7e4bb948e9165587130 (patch) | |
tree | ad06686df732f2882f1be0c3d99f1401f0af4f14 /pkg/abi/linux | |
parent | 38d512f589156949665d06c73ba5bf5a4bd35218 (diff) |
[go-marshal] Enable auto-marshalling for host tty.
PiperOrigin-RevId: 328415633
Diffstat (limited to 'pkg/abi/linux')
-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 |