vm/vmimpl: add support for linux/riscv64

Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
This commit is contained in:
Tobias Klauser 2020-06-26 15:40:13 +02:00 committed by Dmitry Vyukov
parent 6050b932e6
commit 30c61a8438

View File

@ -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
)