1// Copyright 2017 syzkaller project authors. All rights reserved.
2// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
3
4package host
5
6import (
7	"github.com/google/syzkaller/prog"
8)
9
10func isSupported(c *prog.Syscall, sandbox string) (bool, string) {
11	return true, ""
12}
13
14func init() {
15	checkFeature[FeatureCoverage] = unconditionallyEnabled
16}
17