diff options
author | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-01-08 08:20:28 +0000 |
---|---|---|
committer | vanjeff <vanjeff@6f19259b-4bc3-4df7-8a09-765794883524> | 2009-01-08 08:20:28 +0000 |
commit | 0a6c0fd56311f9be1d4b47d87acba30d4327a317 (patch) | |
tree | c97f103ece3adeba6192b689baae704bd2874ab6 /MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c | |
parent | 1727a8c649e6990518dfdc1d763d697e8948b286 (diff) | |
download | edk2-platforms-0a6c0fd56311f9be1d4b47d87acba30d4327a317.tar.xz |
Update function header.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7210 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c')
-rw-r--r-- | MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c b/MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c index da2481a443..96200d1a2b 100644 --- a/MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c +++ b/MdePkg/Library/BaseLib/Ebc/SetJumpLongJump.c @@ -1,6 +1,6 @@ /** @file
Implementation of SetJump() and LongJump() on EBC.
-
+
SetJump() and LongJump() are not currently supported for the EBC processor type.
Implementation for EBC just returns 0 for SetJump(), and ASSERT() for LongJump().
@@ -29,11 +29,13 @@ @param JumpBuffer A pointer to CPU context buffer.
+ @retval 0 Indicates a return from SetJump().
+
**/
UINTN
EFIAPI
SetJump (
- IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer
+ OUT BASE_LIBRARY_JUMP_BUFFER *JumpBuffer
)
{
InternalAssertJumpBuffer (JumpBuffer);
|