security/sandbox/linux/linux_syscalls.h

branch
TOR_BUG_9701
changeset 3
141e0f1194b1
equal deleted inserted replaced
-1:000000000000 0:e74d6b3a9e40
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /* This file has been imported from
6 * http://git.chromium.org/gitweb/?p=chromium.git;a=blob_plain;f=sandbox/linux/services/linux_syscalls.h;h=77c1be8b82a0fe4aca308ca40547ebf7a008d24a;hb=2362c9abea79cae475921bdeee58f9e3910d211c
7 */
8
9 // This header will be kept up to date so that we can compile system-call
10 // policies even when system headers are old.
11 // System call numbers are accessible through __NR_syscall_name.
12
13 #ifndef SANDBOX_LINUX_SERVICES_LINUX_SYSCALLS_H_
14 #define SANDBOX_LINUX_SERVICES_LINUX_SYSCALLS_H_
15
16 #if defined(__x86_64__)
17 #include "x86_64_linux_syscalls.h"
18 #endif
19
20 #if defined(__i386__)
21 #include "x86_32_linux_syscalls.h"
22 #endif
23
24 #if defined(__arm__) && defined(__ARM_EABI__)
25 #include "arm_linux_syscalls.h"
26 #endif
27
28 #endif // SANDBOX_LINUX_SERVICES_LINUX_SYSCALLS_H_
29

mercurial