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 4 package host 5 6 import ( 7 "github.com/google/syzkaller/prog" 8 ) 9 10 func isSupported(c *prog.Syscall, sandbox string) (bool, string) { 11 return true, "" 12 } 13 14 func init() { 15 checkFeature[FeatureCoverage] = unconditionallyEnabled 16 } 17