| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2011 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 Simple/secure ELF loader (NaCl SEL). | 8 * NaCl Simple/secure ELF loader (NaCl SEL). |
| 9 * | 9 * |
| 10 * NOTE: This header is ALSO included by assembler files and hence | 10 * NOTE: This header is ALSO included by assembler files and hence |
| 11 * must not include any C code | 11 * must not include any C code |
| 12 */ | 12 */ |
| 13 #ifndef NATIVE_CLIENT_SERVICE_RUNTIME_NACL_CONFIG_H_ | 13 #ifndef NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_NACL_CONFIG_H_ |
| 14 #define NATIVE_CLIENT_SERVICE_RUNTIME_NACL_CONFIG_H_ | 14 #define NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_NACL_CONFIG_H_ |
| 15 | 15 |
| 16 #include "native_client/src/include/nacl_base.h" | 16 #include "native_client/src/include/nacl_base.h" |
| 17 #include "native_client/src/include/nacl_asm.h" | 17 #include "native_client/src/include/nacl_asm.h" |
| 18 | 18 |
| 19 /* maximum number of elf program headers allowed. */ | 19 /* maximum number of elf program headers allowed. */ |
| 20 #define NACL_MAX_PROGRAM_HEADERS 128 | 20 #define NACL_MAX_PROGRAM_HEADERS 128 |
| 21 | 21 |
| 22 /* | 22 /* |
| 23 * this value must be consistent with NaCl compiler flags | 23 * this value must be consistent with NaCl compiler flags |
| 24 * -falign-functions -falign-labels -and nacl-align. | 24 * -falign-functions -falign-labels -and nacl-align. |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 | 230 |
| 231 | 231 |
| 232 | 232 |
| 233 #else /* NACL_ARCH(NACL_BUILD_ARCH) */ | 233 #else /* NACL_ARCH(NACL_BUILD_ARCH) */ |
| 234 | 234 |
| 235 # error Unknown platform! | 235 # error Unknown platform! |
| 236 | 236 |
| 237 #endif /* NACL_ARCH(NACL_BUILD_ARCH) */ | 237 #endif /* NACL_ARCH(NACL_BUILD_ARCH) */ |
| 238 | 238 |
| 239 | 239 |
| 240 #endif /* NATIVE_CLIENT_SERVICE_RUNTIME_NACL_CONFIG_H_ */ | 240 #endif /* NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_NACL_CONFIG_H_ */ |
| OLD | NEW |