mirror of
https://github.com/rhboot/gnu-efi
synced 2026-08-26 00:26:04 -04:00
Signed-off-by: Jonathon Reinhart <jonathon.reinhart@gmail.com> Signed-off-by: Nigel Croxon <ncroxon@redhat.com>
19 lines
342 B
C
19 lines
342 B
C
#include "lib.h"
|
|
|
|
VOID
|
|
Exit(
|
|
IN EFI_STATUS ExitStatus,
|
|
IN UINTN ExitDataSize,
|
|
IN CHAR16 *ExitData OPTIONAL
|
|
)
|
|
{
|
|
uefi_call_wrapper(BS->Exit,
|
|
4,
|
|
LibImageHandle,
|
|
ExitStatus,
|
|
ExitDataSize,
|
|
ExitData);
|
|
|
|
// Uh oh, Exit() returned?!
|
|
for (;;) { }
|
|
}
|