2013-01-25 12:28:06 +01:00
|
|
|
/** @file
|
|
|
|
|
|
|
|
Copyright (c) 2008 - 2010, Apple Inc. All rights reserved.<BR>
|
|
|
|
|
2019-04-04 01:03:18 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2013-01-25 12:28:06 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __DEFAULT_EXCEPTION_HANDLER_LIB_H__
|
|
|
|
#define __DEFAULT_EXCEPTION_HANDLER_LIB_H__
|
|
|
|
|
|
|
|
/**
|
|
|
|
This is the default action to take on an unexpected exception
|
|
|
|
|
|
|
|
@param ExceptionType Type of the exception
|
|
|
|
@param SystemContext Register state at the time of the Exception
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID
|
|
|
|
DefaultExceptionHandler (
|
|
|
|
IN EFI_EXCEPTION_TYPE ExceptionType,
|
|
|
|
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
|
|
|
);
|
2014-08-19 15:29:52 +02:00
|
|
|
|
|
|
|
#endif
|