[][src]Function seccomp_sys::seccomp_arch_remove

pub unsafe extern "C" fn seccomp_arch_remove(
    ctx: *mut scmp_filter_ctx,
    arch_token: u32
) -> c_int

Removes an architecture from the filter @param ctx the filter context @param arch_token the architecture token, e.g. SCMP_ARCH_*

This function removes an architecture from the given seccomp filter context. If the architecture token is SCMP_ARCH_NATIVE then the native architecture will be assumed. Returns zero on success, negative values on failure.