/* * Copyright (c) 2016 Helge Deller * Author: Helge Deller */ #include #include #include #include "arch.h" #include "arch-parisc.h" const struct arch_def arch_def_parisc64 = { .token = SCMP_ARCH_PARISC64, .token_bpf = AUDIT_ARCH_PARISC64, .size = ARCH_SIZE_64, .endian = ARCH_ENDIAN_BIG, .syscall_resolve_name = parisc_syscall_resolve_name, .syscall_resolve_num = parisc_syscall_resolve_num, .syscall_rewrite = NULL, .rule_add = NULL, };