aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/std/syscall_extra_linux_386.go
blob: 7b7eaf343f662bfb0d32193eaa7aa6448a95017b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package std

var syscallNumExtra = map[string]ScmpSyscall{
	"kexec_file_load": SNR_KEXEC_FILE_LOAD,
	"subpage_prot":    SNR_SUBPAGE_PROT,
	"switch_endian":   SNR_SWITCH_ENDIAN,
}

const (
	SNR_KEXEC_FILE_LOAD ScmpSyscall = __PNR_kexec_file_load
	SNR_SUBPAGE_PROT    ScmpSyscall = __PNR_subpage_prot
	SNR_SWITCH_ENDIAN   ScmpSyscall = __PNR_switch_endian
)