OLD | NEW |
---|---|
(Empty) | |
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 // Generated from the Linux kernel's calls.S. | |
6 #ifndef SANDBOX_LINUX_SERVICES_ARM_LINUX_SYSCALLS_H_ | |
7 #define SANDBOX_LINUX_SERVICES_ARM_LINUX_SYSCALLS_H_ | |
8 | |
jln (very slow on Chromium)
2012/08/14 22:19:32
Please add a comment somewhere stating that this f
Jorge Lucangeli Obes
2012/08/14 22:40:45
Done.
| |
9 #if !defined(__arm__) | |
10 #error "Including header on wrong architecture" | |
11 #endif | |
12 | |
13 // __NR_SYSCALL_BASE is defined in <asm/unistd.h>. | |
14 #include <asm/unistd.h> | |
15 | |
16 #ifndef __NR_process_vm_readv | |
17 #define __NR_process_vm_readv (__NR_SYSCALL_BASE+376) | |
18 #endif | |
19 | |
20 #ifndef __NR_process_vm_writev | |
21 #define __NR_process_vm_writev (__NR_SYSCALL_BASE+377) | |
22 #endif | |
23 | |
24 #endif // SANDBOX_LINUX_SERVICES_ARM_LINUX_SYSCALLS_H_ | |
25 | |
OLD | NEW |