All checks were successful
Test / Create distribution (push) Successful in 1m2s
Test / Sandbox (push) Successful in 2m39s
Test / ShareFS (push) Successful in 3m42s
Test / Hakurei (push) Successful in 3m46s
Test / Sandbox (race detector) (push) Successful in 5m7s
Test / Hakurei (race detector) (push) Successful in 6m12s
Test / Flake checks (push) Successful in 1m30s
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
|
|
)
|