mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-23 03:19:51 +00:00
vm/vmimpl: add support for linux/riscv64
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
This commit is contained in:
parent
6050b932e6
commit
30c61a8438
15
vm/vmimpl/console_linux_riscv64.go
Normal file
15
vm/vmimpl/console_linux_riscv64.go
Normal 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
|
||||
)
|
Loading…
Reference in New Issue
Block a user