浏览代码

Allow sigreturn syscall

This is used on some 32 bit architectures, eg x86

Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
Justin Cormack 9 年之前
父节点
当前提交
d8e06d54cf
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      daemon/execdriver/native/seccomp_default.go

+ 5 - 0
daemon/execdriver/native/seccomp_default.go

@@ -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,