diff --git a/config-linux.md b/config-linux.md index 99de39c2f..9ea44a0e1 100644 --- a/config-linux.md +++ b/config-linux.md @@ -637,6 +637,7 @@ The following parameters can be specified to set up seccomp: * `SCMP_ACT_KILL` * `SCMP_ACT_KILL_PROCESS` + * `SCMP_ACT_KILL_THREAD` * `SCMP_ACT_TRAP` * `SCMP_ACT_ERRNO` * `SCMP_ACT_TRACE` diff --git a/schema/defs-linux.json b/schema/defs-linux.json index 73a14fc53..61b6ec75c 100644 --- a/schema/defs-linux.json +++ b/schema/defs-linux.json @@ -56,6 +56,7 @@ "enum": [ "SCMP_ACT_KILL", "SCMP_ACT_KILL_PROCESS", + "SCMP_ACT_KILL_THREAD", "SCMP_ACT_TRAP", "SCMP_ACT_ERRNO", "SCMP_ACT_TRACE", diff --git a/specs-go/config.go b/specs-go/config.go index 5fceeb635..40955144b 100644 --- a/specs-go/config.go +++ b/specs-go/config.go @@ -641,6 +641,7 @@ type LinuxSeccompAction string const ( ActKill LinuxSeccompAction = "SCMP_ACT_KILL" ActKillProcess LinuxSeccompAction = "SCMP_ACT_KILL_PROCESS" + ActKillThread LinuxSeccompAction = "SCMP_ACT_KILL_THREAD" ActTrap LinuxSeccompAction = "SCMP_ACT_TRAP" ActErrno LinuxSeccompAction = "SCMP_ACT_ERRNO" ActTrace LinuxSeccompAction = "SCMP_ACT_TRACE"