libc_extra/android_linux/linux/seccomp/
mod.rs

1// This file is part of libc-extra. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/libc-extra/master/COPYRIGHT. No part of libc-extra, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
2// Copyright © 2016-2018 The developers of libc-extra. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/libc-extra/master/COPYRIGHT.
3
4
5use ::std::mem::zeroed;
6use ::libc::c_int;
7use ::libc::c_uchar;
8use ::libc::c_uint;
9use ::libc::c_ulong;
10
11
12include!("constants/SECCOMP_FILTER_FLAG.rs");
13include!("constants/SECCOMP_MODE.rs");
14include!("constants/SECCOMP_RET.rs");
15include!("constants/SECCOMP_SET_MODE.rs");
16include!("seccomp_data.rs");