Allow sigreturn syscall

This is used on some 32 bit architectures, eg x86

Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
This commit is contained in:
Justin Cormack 2016-01-04 23:56:01 +00:00 committed by Jessica Frazelle
parent 923609179b
commit d8e06d54cf
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
1 changed files with 5 additions and 0 deletions

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,