forked from rosa/hakurei
These are too general to belong in the container package. This targets the v0.4 release to reduce the wrapper maintenance burden. Signed-off-by: Ophestra <cat@gensokyo.uk>
14 lines
352 B
Go
14 lines
352 B
Go
package ext
|
|
|
|
var syscallNumExtra = map[string]SyscallNum{
|
|
"kexec_file_load": SNR_KEXEC_FILE_LOAD,
|
|
"subpage_prot": SNR_SUBPAGE_PROT,
|
|
"switch_endian": SNR_SWITCH_ENDIAN,
|
|
}
|
|
|
|
const (
|
|
SNR_KEXEC_FILE_LOAD SyscallNum = __PNR_kexec_file_load
|
|
SNR_SUBPAGE_PROT SyscallNum = __PNR_subpage_prot
|
|
SNR_SWITCH_ENDIAN SyscallNum = __PNR_switch_endian
|
|
)
|