mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-23 19:39:40 +00:00
aa27601f9e
Rename some features in preparation for subsequent changes which will align names across the code base.
19 lines
526 B
Go
19 lines
526 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.
|
|
|
|
package host
|
|
|
|
import (
|
|
"github.com/google/syzkaller/prog"
|
|
)
|
|
|
|
func isSupported(c *prog.Syscall, target *prog.Target, sandbox string) (bool, string) {
|
|
return true, ""
|
|
}
|
|
|
|
func init() {
|
|
checkFeature[FeatureCoverage] = unconditionallyEnabled
|
|
checkFeature[FeatureComparisons] = unconditionallyEnabled
|
|
checkFeature[FeatureNetInjection] = unconditionallyEnabled
|
|
}
|