From f238fbd42d592056c2fd8434c7625945b00b2059 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 19 Aug 2017 18:43:50 +0200 Subject: all: support i386 arch Update #191 --- vm/vmimpl/console_linux_386.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 vm/vmimpl/console_linux_386.go (limited to 'vm/vmimpl/console_linux_386.go') diff --git a/vm/vmimpl/console_linux_386.go b/vm/vmimpl/console_linux_386.go new file mode 100644 index 000000000..2f7cad8e6 --- /dev/null +++ b/vm/vmimpl/console_linux_386.go @@ -0,0 +1,16 @@ +// Copyright 2017 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" +) + +// Builds but is not tested. +const ( + unix_CBAUD = unix.CBAUD + unix_CRTSCTS = unix.CRTSCTS + syscall_TCGETS = unix.TCGETS2 + syscall_TCSETS = unix.TCSETS2 +) -- cgit mrf-deployment