Browse code

Allow sigreturn syscall

This is used on some 32 bit architectures, eg x86

Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>

Justin Cormack authored on 2016/01/05 08:56:01
Showing 1 changed files
... ...
@@ -1309,6 +1309,11 @@ var defaultSeccompProfile = &configs.Seccomp{
1309 1309
 			Args:   []*configs.Arg{},
1310 1310
 		},
1311 1311
 		{
1312
+			Name:   "sigreturn",
1313
+			Action: configs.Allow,
1314
+			Args:   []*configs.Arg{},
1315
+		},
1316
+		{
1312 1317
 			Name:   "socket",
1313 1318
 			Action: configs.Allow,
1314 1319
 			Args:   []*configs.Arg{},