From de20bcbb68a06e9589f4ad2bb162aa1feed0c5c9 Mon Sep 17 00:00:00 2001 From: Anton Lindqvist Date: Sat, 18 Aug 2018 22:06:44 +0200 Subject: vm/vmm: support for vmm found on OpenBSD (#678) vm/vmm: add vmm implementation found on OpenBSD --- vm/vmimpl/console_openbsd.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 vm/vmimpl/console_openbsd.go (limited to 'vm/vmimpl/console_openbsd.go') diff --git a/vm/vmimpl/console_openbsd.go b/vm/vmimpl/console_openbsd.go new file mode 100644 index 000000000..d7e3487c4 --- /dev/null +++ b/vm/vmimpl/console_openbsd.go @@ -0,0 +1,12 @@ +// 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 + +// Merely to fix build. +const ( + unixCBAUD = 0 + unixCRTSCTS = 0 + syscallTCGETS = 0 + syscallTCSETS = 0 +) -- cgit mrf-deployment