1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

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

View file

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