Blame src/arch-parisc.h

Packit 56e23f
/**
Packit 56e23f
 * Enhanced Seccomp PARISC Specific Code
Packit 56e23f
 *
Packit 56e23f
 * Copyright (c) 2016 Helge Deller <deller@gmx.de>
Packit 56e23f
 *
Packit 56e23f
 */
Packit 56e23f
Packit 56e23f
/*
Packit 56e23f
 * This library is free software; you can redistribute it and/or modify it
Packit 56e23f
 * under the terms of version 2.1 of the GNU Lesser General Public License as
Packit 56e23f
 * published by the Free Software Foundation.
Packit 56e23f
 *
Packit 56e23f
 * This library is distributed in the hope that it will be useful, but WITHOUT
Packit 56e23f
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
Packit 56e23f
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
Packit 56e23f
 * for more details.
Packit 56e23f
 *
Packit 56e23f
 * You should have received a copy of the GNU Lesser General Public License
Packit 56e23f
 * along with this library; if not, see <http://www.gnu.org/licenses>.
Packit 56e23f
 */
Packit 56e23f
Packit 56e23f
#ifndef _ARCH_PARISC_H
Packit 56e23f
#define _ARCH_PARISC_H
Packit 56e23f
Packit 56e23f
#include <inttypes.h>
Packit 56e23f
Packit 56e23f
#include "arch.h"
Packit 56e23f
#include "system.h"
Packit 56e23f
Packit 56e23f
extern const struct arch_def arch_def_parisc;
Packit 56e23f
extern const struct arch_def arch_def_parisc64;
Packit 56e23f
Packit 56e23f
int parisc_syscall_resolve_name(const char *name);
Packit 56e23f
const char *parisc_syscall_resolve_num(int num);
Packit 56e23f
Packit 56e23f
const struct arch_syscall_def *parisc_syscall_iterate(unsigned int spot);
Packit 56e23f
Packit 56e23f
#endif