diff options
author | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-07 22:52:30 +0000 |
---|---|---|
committer | mdkinney <mdkinney@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-12-07 22:52:30 +0000 |
commit | d75f9fc2275c9e911264283a082bb97c00bdde9a (patch) | |
tree | f462e2acb7a29aa45d87c2278c8185c3aa9a5d51 /MdePkg | |
parent | 857c8410165c0ab8cba515cd02140d10fcef81d0 (diff) | |
download | edk2-platforms-d75f9fc2275c9e911264283a082bb97c00bdde9a.tar.xz |
Add macro comments for SWITCH_STACK_ENTRY_POINT
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6899 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Include/Library/BaseLib.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/MdePkg/Include/Library/BaseLib.h b/MdePkg/Include/Library/BaseLib.h index c4284eac25..6650bcbbad 100644 --- a/MdePkg/Include/Library/BaseLib.h +++ b/MdePkg/Include/Library/BaseLib.h @@ -3362,9 +3362,17 @@ CalculateCheckSum64 ( );
-///
-/// Base Library CPU Functions
-///
+//
+// Base Library CPU Functions
+//
+
+/**
+ Function entry point used when a stack switch is requested with SwitchStack()
+
+ @param Context1 Context1 parameter passed into SwitchStack().
+ @param Context2 Context2 parameter passed into SwitchStack().
+
+**/
typedef
VOID
(EFIAPI *SWITCH_STACK_ENTRY_POINT)(
|