Allow sigreturn syscall

This is used on some 32 bit architectures, eg x86

Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
Upstream-commit: d8e06d54cf3f6478ba85f60cca4a9b03bbc68f10
Component: engine
This commit is contained in:
Justin Cormack
2016-01-04 23:56:01 +00:00
committed by Jessica Frazelle
parent 31f24aba30
commit cd434f010f

View File

@ -1308,6 +1308,11 @@ var defaultSeccompProfile = &configs.Seccomp{
Action: configs.Allow,
Args: []*configs.Arg{},
},
{
Name: "sigreturn",
Action: configs.Allow,
Args: []*configs.Arg{},
},
{
Name: "socket",
Action: configs.Allow,