File tree 3 files changed +3
-0
lines changed
3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -637,6 +637,7 @@ The following parameters can be specified to set up seccomp:
637
637
638
638
* ` SCMP_ACT_KILL `
639
639
* ` SCMP_ACT_KILL_PROCESS `
640
+ * ` SCMP_ACT_KILL_THREAD `
640
641
* ` SCMP_ACT_TRAP `
641
642
* ` SCMP_ACT_ERRNO `
642
643
* ` SCMP_ACT_TRACE `
Original file line number Diff line number Diff line change 56
56
"enum" : [
57
57
" SCMP_ACT_KILL" ,
58
58
" SCMP_ACT_KILL_PROCESS" ,
59
+ " SCMP_ACT_KILL_THREAD" ,
59
60
" SCMP_ACT_TRAP" ,
60
61
" SCMP_ACT_ERRNO" ,
61
62
" SCMP_ACT_TRACE" ,
Original file line number Diff line number Diff line change @@ -641,6 +641,7 @@ type LinuxSeccompAction string
641
641
const (
642
642
ActKill LinuxSeccompAction = "SCMP_ACT_KILL"
643
643
ActKillProcess LinuxSeccompAction = "SCMP_ACT_KILL_PROCESS"
644
+ ActKillThread LinuxSeccompAction = "SCMP_ACT_KILL_THREAD"
644
645
ActTrap LinuxSeccompAction = "SCMP_ACT_TRAP"
645
646
ActErrno LinuxSeccompAction = "SCMP_ACT_ERRNO"
646
647
ActTrace LinuxSeccompAction = "SCMP_ACT_TRACE"
You can’t perform that action at this time.
0 commit comments