michael@0: // Copyright (c) 2012 The Chromium Authors. All rights reserved. michael@0: // Use of this source code is governed by a BSD-style license that can be michael@0: // found in the LICENSE file. michael@0: michael@0: /* This file has been imported from michael@0: * http://git.chromium.org/gitweb/?p=chromium.git;a=blob_plain;f=sandbox/linux/services/linux_syscalls.h;h=77c1be8b82a0fe4aca308ca40547ebf7a008d24a;hb=2362c9abea79cae475921bdeee58f9e3910d211c michael@0: */ michael@0: michael@0: // This header will be kept up to date so that we can compile system-call michael@0: // policies even when system headers are old. michael@0: // System call numbers are accessible through __NR_syscall_name. michael@0: michael@0: #ifndef SANDBOX_LINUX_SERVICES_LINUX_SYSCALLS_H_ michael@0: #define SANDBOX_LINUX_SERVICES_LINUX_SYSCALLS_H_ michael@0: michael@0: #if defined(__x86_64__) michael@0: #include "x86_64_linux_syscalls.h" michael@0: #endif michael@0: michael@0: #if defined(__i386__) michael@0: #include "x86_32_linux_syscalls.h" michael@0: #endif michael@0: michael@0: #if defined(__arm__) && defined(__ARM_EABI__) michael@0: #include "arm_linux_syscalls.h" michael@0: #endif michael@0: michael@0: #endif // SANDBOX_LINUX_SERVICES_LINUX_SYSCALLS_H_ michael@0: