| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2012 The Native Client Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 /* | 7 /* |
| 8 * NaCl kernel / service run-time system call numbers | 8 * NaCl kernel / service run-time system call numbers |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 | 119 |
| 120 #define NACL_sys_truncate 140 | 120 #define NACL_sys_truncate 140 |
| 121 #define NACL_sys_lstat 141 | 121 #define NACL_sys_lstat 141 |
| 122 #define NACL_sys_link 142 | 122 #define NACL_sys_link 142 |
| 123 #define NACL_sys_rename 143 | 123 #define NACL_sys_rename 143 |
| 124 #define NACL_sys_symlink 144 | 124 #define NACL_sys_symlink 144 |
| 125 #define NACL_sys_access 145 | 125 #define NACL_sys_access 145 |
| 126 #define NACL_sys_readlink 146 | 126 #define NACL_sys_readlink 146 |
| 127 #define NACL_sys_utimes 147 | 127 #define NACL_sys_utimes 147 |
| 128 | 128 |
| 129 #define NACL_MAX_SYSCALLS 148 | 129 #define NACL_sys_get_random_bytes 150 |
| 130 |
| 131 #define NACL_MAX_SYSCALLS 151 |
| 130 | 132 |
| 131 #endif | 133 #endif |
| OLD | NEW |