seccomp_merge

Merge two filters @param ctx_dst the destination filter context @param ctx_src the source filter context

This function merges two filter contexts into a single filter context and destroys the second filter context. The two filter contexts must have the same attribute values and not contain any of the same architectures; if they do, the merge operation will fail. On success, the source filter context will be destroyed and should no longer be used; it is not necessary to call seccomp_release() on the source filter context. Returns zero on success, negative values on failure.

version(Posix)
extern (C) nothrow @nogc
int
seccomp_merge

Meta