Update function header.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7210 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
vanjeff 2009-01-08 08:20:28 +00:00
parent 1727a8c649
commit 0a6c0fd563

View File

@ -1,6 +1,6 @@
/** @file /** @file
Implementation of SetJump() and LongJump() on EBC. Implementation of SetJump() and LongJump() on EBC.
SetJump() and LongJump() are not currently supported for the EBC processor type. SetJump() and LongJump() are not currently supported for the EBC processor type.
Implementation for EBC just returns 0 for SetJump(), and ASSERT() for LongJump(). Implementation for EBC just returns 0 for SetJump(), and ASSERT() for LongJump().
@ -29,11 +29,13 @@
@param JumpBuffer A pointer to CPU context buffer. @param JumpBuffer A pointer to CPU context buffer.
@retval 0 Indicates a return from SetJump().
**/ **/
UINTN UINTN
EFIAPI EFIAPI
SetJump ( SetJump (
IN BASE_LIBRARY_JUMP_BUFFER *JumpBuffer OUT BASE_LIBRARY_JUMP_BUFFER *JumpBuffer
) )
{ {
InternalAssertJumpBuffer (JumpBuffer); InternalAssertJumpBuffer (JumpBuffer);