]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPkg/Include/Library/DefaultExceptionHandlerLib.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / ArmPkg / Include / Library / DefaultExceptionHandlerLib.h
1 /** @file
2
3 Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>
4
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7 **/
8
9 #ifndef DEFAULT_EXCEPTION_HANDLER_LIB_H_
10 #define DEFAULT_EXCEPTION_HANDLER_LIB_H_
11
12 /**
13 This is the default action to take on an unexpected exception
14
15 @param ExceptionType Type of the exception
16 @param SystemContext Register state at the time of the Exception
17
18 **/
19 VOID
20 DefaultExceptionHandler (
21 IN EFI_EXCEPTION_TYPE ExceptionType,
22 IN OUT EFI_SYSTEM_CONTEXT SystemContext
23 );
24
25 #endif // DEFAULT_EXCEPTION_HANDLER_LIB_H_