1 /** @file 2 3 Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR> 4 5 This program and the accompanying materials 6 are licensed and made available under the terms and conditions of the BSD License 7 which accompanies this distribution. The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php 9 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 12 13 **/ 14 15 #ifndef __DEFAULT_EXCEPTION_HANDLER_LIB_H__ 16 #define __DEFAULT_EXCEPTION_HANDLER_LIB_H__ 17 18 /** 19 This is the default action to take on an unexpected exception 20 21 @param ExceptionType Type of the exception 22 @param SystemContext Register state at the time of the Exception 23 24 **/ 25 VOID 26 DefaultExceptionHandler ( 27 IN EFI_EXCEPTION_TYPE ExceptionType, 28 IN OUT EFI_SYSTEM_CONTEXT SystemContext 29 ); 30 31 #endif 32