seccomp.2: tfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2014-11-08 07:32:05 +01:00
parent 5b84640229
commit 0a1b868c77
1 changed files with 2 additions and 2 deletions

View File

@ -154,7 +154,7 @@ are:
When adding a new filter, synchronize all other threads of the current
process to the same seccomp filter tree.
.\" FIXME Nowhere in this page is the term "filter tree" defined.
.\" There should be a defintion somewhere.
.\" There should be a definition somewhere.
.\" Is it: "the set of filters attached to a thread"?
If any thread cannot do this,
the call will not attach the new seccomp filter,
@ -396,7 +396,7 @@ install_filter(int syscall, int arch, int error)
/* Destination of syscall mismatch: allow other syscalls */
BPF_STMT(BPF_RET + BPF_K, SECCOMP_RET_ALLOW),
/* Destination of arch mismatch: kill process. */
/* Destination of arch mismatch: kill process */
BPF_STMT(BPF_RET + BPF_K, SECCOMP_RET_KILL),
};