aboutsummaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/targets/targets.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/targets/targets.go b/sys/targets/targets.go
index 65b258ccb..a5946cf16 100644
--- a/sys/targets/targets.go
+++ b/sys/targets/targets.go
@@ -76,6 +76,9 @@ type osCommon struct {
KernelObject string
// Name of cpp(1) executable.
CPP string
+ // Syscalls on which pseudo syscalls depend. Syzkaller will make sure that __NR* or SYS* definitions
+ // for those syscalls are enabled.
+ PseudoSyscallDeps map[string][]string
// Common CFLAGS for this OS.
cflags []string
}