Sfoglia il codice sorgente

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 anni fa
parent
commit
d8e06d54cf
1 ha cambiato i file con 5 aggiunte e 0 eliminazioni
  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,