mirror of https://github.com/acidanthera/audk.git
20 lines
360 B
C
20 lines
360 B
C
|
/** @file
|
||
|
Force interrupt handler to return with interrupts still disabled.
|
||
|
|
||
|
Copyright (C) 2022, Fen Systems Ltd.
|
||
|
|
||
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||
|
**/
|
||
|
|
||
|
#ifndef _IRET_H_
|
||
|
#define _IRET_H_
|
||
|
|
||
|
#include <Protocol/DebugSupport.h>
|
||
|
|
||
|
VOID
|
||
|
DisableInterruptsOnIret (
|
||
|
IN OUT EFI_SYSTEM_CONTEXT SystemContext
|
||
|
);
|
||
|
|
||
|
#endif // _IRET_H_
|