summaryrefslogtreecommitdiff
path: root/src/arch-x86.h
diff options
context:
space:
mode:
authorPaul Moore <pmoore@redhat.com>2013-01-30 10:38:59 -0500
committerPaul Moore <pmoore@redhat.com>2013-03-26 18:15:10 -0400
commitab8d762e398577a65fb588c6fcf8d43c85bf23dc (patch)
tree329e85053c99bff908bcef0b46da8c3c31a30f3e /src/arch-x86.h
parent161f00d9ec6beb35b9517de3aff000208fe002c4 (diff)
downloadlibseccomp-ab8d762e398577a65fb588c6fcf8d43c85bf23dc.tar.gz
arch: rename arch-i386* to arch-x86*
No code chanages here, just an effort to improve naming consistency a bit. Signed-off-by: Paul Moore <pmoore@redhat.com>
Diffstat (limited to 'src/arch-x86.h')
-rw-r--r--src/arch-x86.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/arch-x86.h b/src/arch-x86.h
new file mode 100644
index 0000000..924a82f
--- /dev/null
+++ b/src/arch-x86.h
@@ -0,0 +1,40 @@
+/**
+ * Enhanced Seccomp x86 Specific Code
+ *
+ * Copyright (c) 2012 Red Hat <pmoore@redhat.com>
+ * Author: Paul Moore <pmoore@redhat.com>
+ */
+
+/*
+ * This library is free software; you can redistribute it and/or modify it
+ * under the terms of version 2.1 of the GNU Lesser General Public License as
+ * published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this library; if not, see <http://www.gnu.org/licenses>.
+ */
+
+#ifndef _ARCH_X86_H
+#define _ARCH_X86_H
+
+#include "arch.h"
+#include "db.h"
+#include "system.h"
+
+#define x86_arg_count_max 6
+
+extern const struct arch_def arch_def_x86;
+extern const struct arch_syscall_def x86_syscall_table[];
+
+int x86_syscall_rewrite(const struct arch_def *arch, unsigned int strict,
+ int *syscall);
+
+int x86_filter_rewrite(const struct arch_def *arch, unsigned int strict,
+ int *syscall, struct db_api_arg *chain);
+
+#endif