fix function description comments

svn path=/branches/ros-amd64-bringup/; revision=36391
This commit is contained in:
Timo Kreuzer
2008-09-21 20:15:15 +00:00
parent 57ab050fcd
commit 076b5a9b06
+20 -11
View File
@@ -320,20 +320,23 @@ BadThread:
.endfunc
/*++
* KiSwapContextInternal
* KiSwapContextInternal
*
* \brief
* The KiSwapContextInternal routine switches context to another thread.
*
* BOOLEAN USERCALL KiSwapContextInternal();
*
* Params:
* ESI - Pointer to the KTHREAD to which the caller wishes to
* switch to.
* EDI - Pointer to the KTHREAD to which the caller wishes to
* switch from.
*
* Returns:
* None.
* \returns
* APC state.
*
* Remarks:
* \remarks
* Absolutely all registers except ESP can be trampled here for maximum code flexibility.
*
*--*/
@@ -589,19 +592,25 @@ WrongCpu:
#endif
.endfunc
/*++
* KiSwapContext
/**
* KiSwapContext
*
* \brief
* The KiSwapContext routine switches context to another thread.
*
* Params:
* TargetThread - Pointer to the KTHREAD to which the caller wishes to
* switch to.
* BOOLEAN FASTCALL
* KiSwapContext(PKTHREAD CurrentThread, PKTHREAD TargetThread);
*
* Returns:
* \param CurrentThread
* Pointer to the KTHREAD of the current thread.
*
* \param TargetThread
* Pointer to the KTHREAD to which the caller wishes to switch to.
*
* \returns
* The WaitStatus of the Target Thread.
*
* Remarks:
* \remarks
* This is a wrapper around KiSwapContextInternal which will save all the
* non-volatile registers so that the Internal function can use all of
* them. It will also save the old current thread and set the new one.