syzkaller/pkg/host/host_akaros.go
Dmitry Vyukov 06ece2ca66 pkg/host: rework host feature detection/setup
Currently host feature detection/setup code is spread
across platform-independent fuzzer code, pkg/host, pkg/ipc
and executor.
Move this all into pkg/host and show readable info
about features on manager start.

Fixes #46
2018-06-12 14:53:22 +02:00

15 lines
331 B
Go

// 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.
// +build akaros
package host
import (
"github.com/google/syzkaller/prog"
)
func isSupported(c *prog.Syscall, sandbox string) (bool, string) {
return true, ""
}