| 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 | 341 |
| 342 int enable_debug_stub; | 342 int enable_debug_stub; |
| 343 struct NaClDebugCallbacks *debug_stub_callbacks; | 343 struct NaClDebugCallbacks *debug_stub_callbacks; |
| 344 struct NaClMutex exception_mu; | 344 struct NaClMutex exception_mu; |
| 345 uint32_t exception_handler; | 345 uint32_t exception_handler; |
| 346 int enable_exception_handling; | 346 int enable_exception_handling; |
| 347 #if NACL_WINDOWS | 347 #if NACL_WINDOWS |
| 348 enum NaClDebugExceptionHandlerState debug_exception_handler_state; | 348 enum NaClDebugExceptionHandlerState debug_exception_handler_state; |
| 349 NaClAttachDebugExceptionHandlerFunc attach_debug_exception_handler_func; | 349 NaClAttachDebugExceptionHandlerFunc attach_debug_exception_handler_func; |
| 350 #endif | 350 #endif |
| 351 int enable_dfa_validator; |
| 351 }; | 352 }; |
| 352 | 353 |
| 353 | 354 |
| 354 | 355 |
| 355 void NaClAppIncrVerbosity(void); | 356 void NaClAppIncrVerbosity(void); |
| 356 | 357 |
| 357 /* | 358 /* |
| 358 * Initializes a NaCl application with the default parameters | 359 * Initializes a NaCl application with the default parameters |
| 359 * and the specified syscall table. | 360 * and the specified syscall table. |
| 360 * | 361 * |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 | 709 |
| 709 #endif | 710 #endif |
| 710 | 711 |
| 711 #if NACL_LINUX | 712 #if NACL_LINUX |
| 712 void handle_r_debug(const char *switch_value, char *argv0); | 713 void handle_r_debug(const char *switch_value, char *argv0); |
| 713 #endif | 714 #endif |
| 714 | 715 |
| 715 EXTERN_C_END | 716 EXTERN_C_END |
| 716 | 717 |
| 717 #endif /* NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_SEL_LDR_H_ */ | 718 #endif /* NATIVE_CLIENT_SRC_TRUSTED_SERVICE_RUNTIME_SEL_LDR_H_ */ |
| OLD | NEW |