diff options
author | Paul Moore <pmoore@redhat.com> | 2016-01-02 22:24:29 -0500 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2016-02-09 08:32:15 -0500 |
commit | 5b42b8cfa25506fa260c8f46b4a063b5cfd09d1c (patch) | |
tree | 9c7d95b3b2499edca5437357b3861d932e318e38 /src/arch-mips64.c | |
parent | 996e445a74823c735757413fda809e1ed0afc7d4 (diff) | |
download | libseccomp-5b42b8cfa25506fa260c8f46b4a063b5cfd09d1c.tar.gz |
arch: enable more involved arch/ABI specific rule creation
Create the infrastructure for arch/ABI specific rule creation that
allows us much more involved arch/ABI customization.
Signed-off-by: Paul Moore <pmoore@redhat.com>
Diffstat (limited to 'src/arch-mips64.c')
-rw-r--r-- | src/arch-mips64.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/arch-mips64.c b/src/arch-mips64.c index 9327bb6..9cb34e2 100644 --- a/src/arch-mips64.c +++ b/src/arch-mips64.c @@ -33,7 +33,6 @@ const struct arch_def arch_def_mips64 = { .syscall_resolve_name = mips64_syscall_resolve_name, .syscall_resolve_num = mips64_syscall_resolve_num, .syscall_rewrite = NULL, - .filter_rewrite = NULL, .rule_add = NULL, }; @@ -45,6 +44,5 @@ const struct arch_def arch_def_mipsel64 = { .syscall_resolve_name = mips64_syscall_resolve_name, .syscall_resolve_num = mips64_syscall_resolve_num, .syscall_rewrite = NULL, - .filter_rewrite = NULL, .rule_add = NULL, }; |