VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/LongJump.c@ 107675

最後變更 在這個檔案從107675是 99404,由 vboxsync 提交於 2 年 前

Devices/EFI/FirmwareNew: Update to edk2-stable202302 and make it build, bugref:4643

  • 屬性 svn:eol-style 設為 native
檔案大小: 1001 位元組
 
1/** @file
2 Long Jump functions.
3
4 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>
5 SPDX-License-Identifier: BSD-2-Clause-Patent
6
7**/
8
9#include "BaseLibInternals.h"
10
11/**
12 Restores the CPU context that was saved with SetJump().
13
14 Restores the CPU context from the buffer specified by JumpBuffer. This
15 function never returns to the caller. Instead is resumes execution based on
16 the state of JumpBuffer.
17
18 If JumpBuffer is NULL, then ASSERT().
19 For IPF CPUs, if JumpBuffer is not aligned on a 16-byte boundary, then ASSERT().
20 If Value is 0, then ASSERT().
21
22 @param JumpBuffer A pointer to CPU context buffer.
23 @param Value The value to return when the SetJump() context is
24 restored and must be non-zero.
25
26**/
27VOID
28EFIAPI
29LongJump (
30 IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer,
31 IN UINTN Value
32 )
33{
34 InternalAssertJumpBuffer (JumpBuffer);
35 ASSERT (Value != 0);
36
37 InternalLongJump (JumpBuffer, Value);
38}
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette