summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c')
-rw-r--r--MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c b/MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c
index a2381251f3..ab7716cb94 100644
--- a/MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c
+++ b/MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c
@@ -1,5 +1,5 @@
/** @file
- Switch Stack functions.
+ Switch Stack functions.
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
@@ -14,27 +14,28 @@
**/
-
+VOID
+EFIAPI
+InternalAssertJumpBuffer (
+ IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer
+ );
UINTN
EFIAPI
SetJump (
- IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer
+ IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer
)
{
- ASSERT (JumpBuffer != NULL);
- ASSERT (FALSE);
+ InternalAssertJumpBuffer (JumpBuffer);
return 0;
}
VOID
EFIAPI
-LongJump (
- IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer,
- IN UINTN Value
+InternalLongJump (
+ IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer,
+ IN UINTN Value
)
{
- ASSERT (JumpBuffer != NULL);
- ASSERT (Value != 0);
ASSERT (FALSE);
}