Index: /trunk/include/iprt/critsect.h
===================================================================
--- /trunk/include/iprt/critsect.h	(revision 57977)
+++ /trunk/include/iprt/critsect.h	(revision 57978)
@@ -646,6 +646,6 @@
  * Checks the caller is the exclusive (write) owner of the critical section.
  *
- * @retval  @c true if owner.
- * @retval  @c false if not owner.
+ * @retval  true if owner.
+ * @retval  false if not owner.
  * @param   pThis           Pointer to the read/write critical section.
  */
@@ -705,6 +705,6 @@
  * Checks if a critical section is initialized or not.
  *
- * @retval  @c true if initialized.
- * @retval  @c false if not initialized.
+ * @retval  true if initialized.
+ * @retval  false if not initialized.
  * @param   pThis           Pointer to the read/write critical section.
  */
Index: /trunk/include/iprt/list.h
===================================================================
--- /trunk/include/iprt/list.h	(revision 57977)
+++ /trunk/include/iprt/list.h	(revision 57978)
@@ -153,6 +153,6 @@
  * Checks if a node is the last element in the list.
  *
- * @retval  @c true if the node is the last element in the list.
- * @retval  @c false otherwise
+ * @retval  true if the node is the last element in the list.
+ * @retval  false otherwise
  *
  * @param   pList               The list.
@@ -164,6 +164,6 @@
  * Checks if a node is the first element in the list.
  *
- * @retval  @c true if the node is the first element in the list.
- * @retval  @c false otherwise.
+ * @retval  true if the node is the first element in the list.
+ * @retval  false otherwise.
  *
  * @param   pList               The list.
@@ -175,6 +175,6 @@
  * Checks if a type converted node is actually the dummy element (@a pList).
  *
- * @retval  @c true if the node is the dummy element in the list.
- * @retval  @c false otherwise.
+ * @retval  true if the node is the dummy element in the list.
+ * @retval  false otherwise.
  *
  * @param   pList               The list.
@@ -195,6 +195,6 @@
  * Checks if a list is empty.
  *
- * @retval  @c true if the list is empty.
- * @retval  @c false otherwise.
+ * @retval  true if the list is empty.
+ * @retval  false otherwise.
  *
  * @param   pList               The list to check.
Index: /trunk/include/iprt/mem.h
===================================================================
--- /trunk/include/iprt/mem.h	(revision 57977)
+++ /trunk/include/iprt/mem.h	(revision 57978)
@@ -894,5 +894,5 @@
 /**
  * Fenced drop-in replacement for RTMemTmpFreeTag.
- * @copydoc RTMemTmpFreeTag
+ * @copydoc RTMemTmpFree
  */
 RTDECL(void)    RTMemEfTmpFreeNP(void *pv) RT_NO_THROW_PROTO;
Index: /trunk/include/iprt/uint128.h
===================================================================
--- /trunk/include/iprt/uint128.h	(revision 57977)
+++ /trunk/include/iprt/uint128.h	(revision 57978)
@@ -744,5 +744,5 @@
     else if (cBits < 128)
         pValueResult->s.Hi &= (RT_BIT_64(cBits - 64) - 1);
-/** @todo #if ARCH_BITS >= 64 */
+/** @todo \#if ARCH_BITS >= 64 */
     return pValueResult;
 }
@@ -841,5 +841,5 @@
 {
     RTUINT128U const InVal = *pValueResult;
-/** @todo #if ARCH_BITS >= 64 */
+/** @todo \#if ARCH_BITS >= 64 */
     if (cBits > 0)
     {
Index: /trunk/src/VBox/Runtime/common/dbg/dbgmodcodeview.cpp
===================================================================
--- /trunk/src/VBox/Runtime/common/dbg/dbgmodcodeview.cpp	(revision 57977)
+++ /trunk/src/VBox/Runtime/common/dbg/dbgmodcodeview.cpp	(revision 57978)
@@ -801,5 +801,5 @@
  * @returns IPRT status code
  * @param   pThis               The CodeView debug info reader instance.
- * @param   pbSymTab            The symbol table.
+ * @param   pvSymTab            The symbol table.
  * @param   cbSymTab            The size of the symbol table.
  * @param   fFlags              Flags reserved for future exploits, MBZ.
@@ -2469,4 +2469,5 @@
  * @param   off                 The offset where to expect CV debug info.
  * @param   cb                  The number of bytes of debug info.
+ * @param   enmArch             The desired image architecture.
  * @param   pszFilename         The path to the file (for logging).
  */
@@ -2549,5 +2550,5 @@
  *
  * @returns status code.
- * @param   pDbgMod             The debug module instance.  On success pvDbgPriv
+ * @param   pThis               The debug module instance.  On success pvDbgPriv
  *                              will point to a valid RTDBGMODCV.
  * @param   enmFileType         The kind of file this is we're probing.
Index: /trunk/src/VBox/Runtime/common/dbg/dbgmoddeferred.cpp
===================================================================
--- /trunk/src/VBox/Runtime/common/dbg/dbgmoddeferred.cpp	(revision 57977)
+++ /trunk/src/VBox/Runtime/common/dbg/dbgmoddeferred.cpp	(revision 57978)
@@ -515,10 +515,10 @@
 
 /** @interface_method_impl{RTDBGMODVTIMG,pfnRvaToSegOffset} */
-static DECLCALLBACK(int) rtDbgModDeferredImg_RvaToSegOffset(PRTDBGMODINT pMod, RTLDRADDR uRva,
+static DECLCALLBACK(int) rtDbgModDeferredImg_RvaToSegOffset(PRTDBGMODINT pMod, RTLDRADDR Rva,
                                                             PRTDBGSEGIDX piSeg, PRTLDRADDR poffSeg)
 {
     int rc = rtDbgModDeferredDoIt(pMod, false /*fForceRetry*/);
     if (RT_SUCCESS(rc))
-        rc = pMod->pImgVt->pfnRvaToSegOffset(pMod, uRva, piSeg, poffSeg);
+        rc = pMod->pImgVt->pfnRvaToSegOffset(pMod, Rva, piSeg, poffSeg);
     return rc;
 }
Index: /trunk/src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp
===================================================================
--- /trunk/src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp	(revision 57977)
+++ /trunk/src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp	(revision 57978)
@@ -2137,6 +2137,6 @@
  * Check if the cursor is at the end of the current DWARF unit.
  *
- * @retval  @c true if at the end or a cursor error is pending.
- * @retval  @c false if not.
+ * @retval  true if at the end or a cursor error is pending.
+ * @retval  false if not.
  * @param   pCursor             The cursor.
  */
@@ -2166,6 +2166,6 @@
  * processing).
  *
- * @retval  @c true if at the end or a cursor error is pending.
- * @retval  @c false if not.
+ * @retval  true if at the end or a cursor error is pending.
+ * @retval  false if not.
  * @param   pCursor             The cursor.
  */
@@ -4015,5 +4015,5 @@
  *
  * @param   pThis               The DWARF instance.
- * @param   pParent             The parent DIE.
+ * @param   pParentDie          The parent DIE.
  */
 static void rtDwarfInfo_FreeChildren(PRTDBGMODDWARF pThis, PRTDWARFDIE pParentDie)
Index: /trunk/src/VBox/Runtime/common/path/RTPathGlob.cpp
===================================================================
--- /trunk/src/VBox/Runtime/common/path/RTPathGlob.cpp	(revision 57977)
+++ /trunk/src/VBox/Runtime/common/path/RTPathGlob.cpp	(revision 57978)
@@ -376,6 +376,9 @@
 /**
  * Implements mapping a glob variable to multiple environment variable values.
+ *
+ * @param   a_Name              The variable name.
  * @param   a_apszVarNames      Assumes to be a global variable that RT_ELEMENTS
  *                              works correctly on.
+ * @param   a_cbMaxValue        The max expected value size.
  */
 #define RTPATHMATCHVAR_MULTIPLE_ENVVARS(a_Name, a_apszVarNames, a_cbMaxValue) \
@@ -451,5 +454,5 @@
 
 /**
- * @interface_method_impl{RTPATHMATCHVAR,pfnQuery, Enumerates the PATH}.
+ * @interface_method_impl{RTPATHMATCHVAR,pfnQuery, Enumerates the PATH}
  */
 static DECLCALLBACK(int) rtPathVarQuery_Path(uint32_t iItem, char *pszBuf, size_t cbBuf, size_t *pcchValue,
@@ -996,4 +999,6 @@
  * @param   pchPattern          The pattern to compile.
  * @param   cchPattern          The length of the pattern.
+ * @param   fIgnoreCase         Whether to ignore case or not when doing the
+ *                              actual matching later on.
  * @param   pAllocator          Pointer to the instruction allocator & result
  *                              array.  The compiled "program" starts at
@@ -1659,5 +1664,7 @@
  * @param   pGlob               The glob instance data.
  * @param   offPath             The current path offset/length.
- * @param   iComp               The current component.
+ * @param   iStarStarComp       The star-star component index.
+ * @param   offStarStarPath     The offset of the star-star component in the
+ *                              pattern path.
  */
 DECL_NO_INLINE(static, int) rtPathGlobExecRecursiveStarStar(PRTPATHGLOB pGlob, size_t offPath, uint32_t iStarStarComp,
Index: /trunk/src/VBox/Runtime/r0drv/nt/initterm-r0drv-nt.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r0drv/nt/initterm-r0drv-nt.cpp	(revision 57977)
+++ /trunk/src/VBox/Runtime/r0drv/nt/initterm-r0drv-nt.cpp	(revision 57978)
@@ -136,6 +136,6 @@
  * Tries a set against the current kernel.
  *
- * @retval @c true if it matched up, global variables are updated.
- * @retval @c false otherwise (no globals updated).
+ * @retval  true if it matched up, global variables are updated.
+ * @retval  false otherwise (no globals updated).
  * @param   pSet                The data set.
  * @param   pbPrcb              Pointer to the processor control block.
Index: /trunk/src/VBox/Runtime/r0drv/nt/mp-r0drv-nt.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r0drv/nt/mp-r0drv-nt.cpp	(revision 57977)
+++ /trunk/src/VBox/Runtime/r0drv/nt/mp-r0drv-nt.cpp	(revision 57978)
@@ -303,12 +303,13 @@
  *
  * @returns VINF_SUCCESS.
- * @param   pfnWorker   The callback.
- * @param   pvUser1     User argument 1.
- * @param   pvUser2     User argument 2.
- * @param   idCpu       First CPU to match, ultimately specific to the
- *                      pfnNativeWrapper used.
- * @param   idCpu2      Second CPU to match, ultimately specific to the
- *                      pfnNativeWrapper used.
- * @param   pcHits      Where to return the number of this. Optional.
+ * @param   pfnWorker           The callback.
+ * @param   pvUser1             User argument 1.
+ * @param   pvUser2             User argument 2.
+ * @param   pfnNativeWrapper    The wrapper between the NT and IPRT callbacks.
+ * @param   idCpu               First CPU to match, ultimately specific to the
+ *                              pfnNativeWrapper used.
+ * @param   idCpu2              Second CPU to match, ultimately specific to the
+ *                              pfnNativeWrapper used.
+ * @param   pcHits              Where to return the number of this. Optional.
  */
 static int rtMpCallUsingBroadcastIpi(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2,
Index: /trunk/src/VBox/Runtime/r0drv/nt/ntBldSymDb.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r0drv/nt/ntBldSymDb.cpp	(revision 57977)
+++ /trunk/src/VBox/Runtime/r0drv/nt/ntBldSymDb.cpp	(revision 57978)
@@ -174,5 +174,5 @@
  * Returns the name we wish to use in the C code.
  * @returns Member name.
- * @param   pStruct             The member descriptor.
+ * @param   pMember             The member descriptor.
  */
 static const char *figureCMemberName(MYMEMBER const *pMember)
@@ -339,4 +339,6 @@
  * @returns Fully complained exit code.
  * @param   pOsVerInfo      The OS version info.
+ * @param   enmArch         The NT architecture of the incoming PDB.
+ * @param   pszPdb          The PDB file name.
  */
 static RTEXITCODE saveStructures(PRTNTSDBOSVER pOsVerInfo, MYARCH enmArch, const char *pszPdb)
@@ -987,4 +989,5 @@
  * @param   cchDir              The length of pszDir in pszDir.
  * @param   pDirEntry           Pointer to the directory buffer.
+ * @param   iLogDepth           The logging depth.
  */
 static RTEXITCODE processDirSub(char *pszDir, size_t cchDir, PRTDIRENTRYEX pDirEntry, int iLogDepth)
Index: /trunk/src/VBox/Runtime/r3/nt/pathint-nt.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r3/nt/pathint-nt.cpp	(revision 57977)
+++ /trunk/src/VBox/Runtime/r3/nt/pathint-nt.cpp	(revision 57978)
@@ -432,7 +432,5 @@
  * @param   pszPath             The UTF-8 path.
  * @param   fDesiredAccess      See NtCreateFile.
- * @param   fFileAttribs        See NtCreateFile.
  * @param   fShareAccess        See NtCreateFile.
- * @param   fCreateDisposition  See NtCreateFile.
  * @param   fCreateOptions      See NtCreateFile.
  * @param   fObjAttribs         The OBJECT_ATTRIBUTES::Attributes value, see
Index: /trunk/src/VBox/Runtime/r3/socket.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r3/socket.cpp	(revision 57977)
+++ /trunk/src/VBox/Runtime/r3/socket.cpp	(revision 57978)
@@ -282,5 +282,5 @@
  * @param   pAddr               Pointer to the generic IPRT network address.
  * @param   pDst                The source address.
- * @param   cbSrc               The size of the source address.
+ * @param   cbDst               The size of the source address.
  * @param   pcbAddr             Where to store the size of the returned address.
  *                              Optional
Index: /trunk/src/VBox/Runtime/r3/win/process-win.cpp
===================================================================
--- /trunk/src/VBox/Runtime/r3/win/process-win.cpp	(revision 57977)
+++ /trunk/src/VBox/Runtime/r3/win/process-win.cpp	(revision 57978)
@@ -111,5 +111,5 @@
  * caller must also check if any of the necessary APIs are NULL pointers.
  * @{ */
-/** Init once structure for run-as-user functions we need.. */
+/** Init once structure for run-as-user functions we need. */
 static RTONCE                           g_rtProcWinResolveOnce          = RTONCE_INITIALIZER;
 /* kernel32.dll: */
@@ -1154,5 +1154,5 @@
  *
  * @returns true on success, false on failure.
- * @param   hWinStation         The window station.
+ * @param   hDesktop            The desktop handle.
  * @param   pSid                The SID.
  */
