aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/std/syscall_extra_linux_386.go
diff options
context:
space:
mode:
Diffstat (limited to 'container/std/syscall_extra_linux_386.go')
-rw-r--r--container/std/syscall_extra_linux_386.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/container/std/syscall_extra_linux_386.go b/container/std/syscall_extra_linux_386.go
new file mode 100644
index 00000000..f23c919e
--- /dev/null
+++ b/container/std/syscall_extra_linux_386.go
@@ -0,0 +1,13 @@
+package std
+
+var syscallNumExtra = map[string]int{
+ "kexec_file_load": SYS_KEXEC_FILE_LOAD,
+ "subpage_prot": SYS_SUBPAGE_PROT,
+ "switch_endian": SYS_SWITCH_ENDIAN,
+}
+
+const (
+ SYS_KEXEC_FILE_LOAD = __PNR_kexec_file_load
+ SYS_SUBPAGE_PROT = __PNR_subpage_prot
+ SYS_SWITCH_ENDIAN = __PNR_switch_endian
+)