aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/gvisor.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/report/gvisor.go')
-rw-r--r--pkg/report/gvisor.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkg/report/gvisor.go b/pkg/report/gvisor.go
index 44ef39c4a..d988de5cf 100644
--- a/pkg/report/gvisor.go
+++ b/pkg/report/gvisor.go
@@ -6,13 +6,16 @@ package report
import (
"bytes"
"regexp"
+
+ "github.com/google/syzkaller/sys/targets"
)
type gvisor struct {
ignores []*regexp.Regexp
}
-func ctorGvisor(kernelSrc, kernelObj string, ignores []*regexp.Regexp) (Reporter, []string, error) {
+func ctorGvisor(target *targets.Target, kernelSrc, kernelObj string,
+ ignores []*regexp.Regexp) (Reporter, []string, error) {
ctx := &gvisor{
ignores: ignores,
}