| 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 Simple/secure ELF loader (NaCl SEL). | 8 * NaCl Simple/secure ELF loader (NaCl SEL). |
| 9 * | 9 * |
| 10 * This loader can only process NaCl object files as produced using | 10 * This loader can only process NaCl object files as produced using |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 | 348 |
| 349 int enable_debug_stub; | 349 int enable_debug_stub; |
| 350 struct NaClDebugCallbacks *debug_stub_callbacks; | 350 struct NaClDebugCallbacks *debug_stub_callbacks; |
| 351 struct NaClMutex exception_mu; | 351 struct NaClMutex exception_mu; |
| 352 uint32_t exception_handler; | 352 uint32_t exception_handler; |
| 353 int enable_exception_handling; | 353 int enable_exception_handling; |
| 354 #if NACL_WINDOWS | 354 #if NACL_WINDOWS |
| 355 enum NaClDebugExceptionHandlerState debug_exception_handler_state; | 355 enum NaClDebugExceptionHandlerState debug_exception_handler_state; |
| 356 NaClAttachDebugExceptionHandlerFunc attach_debug_exception_handler_func; | 356 NaClAttachDebugExceptionHandlerFunc attach_debug_exception_handler_func; |
| 357 #endif | 357 #endif |
| 358 int enable_dfa_validator; |
| 358 }; | 359 }; |
| 359 | 360 |
| 360 | 361 |
| 361 | 362 |
| 362 void NaClAppIncrVerbosity(void); | 363 void NaClAppIncrVerbosity(void); |
| 363 | 364 |
| 364 /* | 365 /* |
| 365 * Initializes a NaCl application with the default parameters | 366 * Initializes a NaCl application with the default parameters |
| 366 * and the specified syscall table. | 367 * and the specified syscall table. |
| 367 * | 368 * |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 | 776 |
| 776 #endif | 777 #endif |
| 777 | 778 |
| 778 #if NACL_LINUX | 779 #if NACL_LINUX |
| 779 void handle_r_debug(const char *switch_value, char *argv0); | 780 void handle_r_debug(const char *switch_value, char *argv0); |
| 780 #endif | 781 #endif |
| 781 | 782 |
| 782 EXTERN_C_END | 783 EXTERN_C_END |
| 783 | 784 |
| 784 #endif /* NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_SEL_LDR_H_ */ | 785 #endif /* NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_SEL_LDR_H_ */ |
| OLD | NEW |