diff options
Diffstat (limited to 'vm/vmimpl')
| -rw-r--r-- | vm/vmimpl/console_linux_s390x.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vm/vmimpl/console_linux_s390x.go b/vm/vmimpl/console_linux_s390x.go new file mode 100644 index 000000000..37d321fa5 --- /dev/null +++ b/vm/vmimpl/console_linux_s390x.go @@ -0,0 +1,15 @@ +// Copyright 2020 syzkaller project authors. All rights reserved. +// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. + +package vmimpl + +import ( + "golang.org/x/sys/unix" +) + +const ( + unixCBAUD = unix.CBAUD + unixCRTSCTS = unix.CRTSCTS + syscallTCGETS = unix.TCGETS2 + syscallTCSETS = unix.TCSETS2 +) |
