Changeset 57978 in vbox
- Timestamp:
- Sep 30, 2015 7:39:30 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 14 edited
-
include/iprt/critsect.h (modified) (2 diffs)
-
include/iprt/list.h (modified) (4 diffs)
-
include/iprt/mem.h (modified) (1 diff)
-
include/iprt/uint128.h (modified) (2 diffs)
-
src/VBox/Runtime/common/dbg/dbgmodcodeview.cpp (modified) (3 diffs)
-
src/VBox/Runtime/common/dbg/dbgmoddeferred.cpp (modified) (1 diff)
-
src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp (modified) (3 diffs)
-
src/VBox/Runtime/common/path/RTPathGlob.cpp (modified) (4 diffs)
-
src/VBox/Runtime/r0drv/nt/initterm-r0drv-nt.cpp (modified) (1 diff)
-
src/VBox/Runtime/r0drv/nt/mp-r0drv-nt.cpp (modified) (1 diff)
-
src/VBox/Runtime/r0drv/nt/ntBldSymDb.cpp (modified) (3 diffs)
-
src/VBox/Runtime/r3/nt/pathint-nt.cpp (modified) (1 diff)
-
src/VBox/Runtime/r3/socket.cpp (modified) (1 diff)
-
src/VBox/Runtime/r3/win/process-win.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/critsect.h
r57926 r57978 646 646 * Checks the caller is the exclusive (write) owner of the critical section. 647 647 * 648 * @retval @ctrue if owner.649 * @retval @cfalse if not owner.648 * @retval true if owner. 649 * @retval false if not owner. 650 650 * @param pThis Pointer to the read/write critical section. 651 651 */ … … 705 705 * Checks if a critical section is initialized or not. 706 706 * 707 * @retval @ctrue if initialized.708 * @retval @cfalse if not initialized.707 * @retval true if initialized. 708 * @retval false if not initialized. 709 709 * @param pThis Pointer to the read/write critical section. 710 710 */ -
trunk/include/iprt/list.h
r57926 r57978 153 153 * Checks if a node is the last element in the list. 154 154 * 155 * @retval @ctrue if the node is the last element in the list.156 * @retval @cfalse otherwise155 * @retval true if the node is the last element in the list. 156 * @retval false otherwise 157 157 * 158 158 * @param pList The list. … … 164 164 * Checks if a node is the first element in the list. 165 165 * 166 * @retval @ctrue if the node is the first element in the list.167 * @retval @cfalse otherwise.166 * @retval true if the node is the first element in the list. 167 * @retval false otherwise. 168 168 * 169 169 * @param pList The list. … … 175 175 * Checks if a type converted node is actually the dummy element (@a pList). 176 176 * 177 * @retval @ctrue if the node is the dummy element in the list.178 * @retval @cfalse otherwise.177 * @retval true if the node is the dummy element in the list. 178 * @retval false otherwise. 179 179 * 180 180 * @param pList The list. … … 195 195 * Checks if a list is empty. 196 196 * 197 * @retval @ctrue if the list is empty.198 * @retval @cfalse otherwise.197 * @retval true if the list is empty. 198 * @retval false otherwise. 199 199 * 200 200 * @param pList The list to check. -
trunk/include/iprt/mem.h
r57944 r57978 894 894 /** 895 895 * Fenced drop-in replacement for RTMemTmpFreeTag. 896 * @copydoc RTMemTmpFree Tag896 * @copydoc RTMemTmpFree 897 897 */ 898 898 RTDECL(void) RTMemEfTmpFreeNP(void *pv) RT_NO_THROW_PROTO; -
trunk/include/iprt/uint128.h
r57944 r57978 744 744 else if (cBits < 128) 745 745 pValueResult->s.Hi &= (RT_BIT_64(cBits - 64) - 1); 746 /** @todo #if ARCH_BITS >= 64 */746 /** @todo \#if ARCH_BITS >= 64 */ 747 747 return pValueResult; 748 748 } … … 841 841 { 842 842 RTUINT128U const InVal = *pValueResult; 843 /** @todo #if ARCH_BITS >= 64 */843 /** @todo \#if ARCH_BITS >= 64 */ 844 844 if (cBits > 0) 845 845 { -
trunk/src/VBox/Runtime/common/dbg/dbgmodcodeview.cpp
r57944 r57978 801 801 * @returns IPRT status code 802 802 * @param pThis The CodeView debug info reader instance. 803 * @param p bSymTab The symbol table.803 * @param pvSymTab The symbol table. 804 804 * @param cbSymTab The size of the symbol table. 805 805 * @param fFlags Flags reserved for future exploits, MBZ. … … 2469 2469 * @param off The offset where to expect CV debug info. 2470 2470 * @param cb The number of bytes of debug info. 2471 * @param enmArch The desired image architecture. 2471 2472 * @param pszFilename The path to the file (for logging). 2472 2473 */ … … 2549 2550 * 2550 2551 * @returns status code. 2551 * @param p DbgModThe debug module instance. On success pvDbgPriv2552 * @param pThis The debug module instance. On success pvDbgPriv 2552 2553 * will point to a valid RTDBGMODCV. 2553 2554 * @param enmFileType The kind of file this is we're probing. -
trunk/src/VBox/Runtime/common/dbg/dbgmoddeferred.cpp
r57358 r57978 515 515 516 516 /** @interface_method_impl{RTDBGMODVTIMG,pfnRvaToSegOffset} */ 517 static DECLCALLBACK(int) rtDbgModDeferredImg_RvaToSegOffset(PRTDBGMODINT pMod, RTLDRADDR uRva,517 static DECLCALLBACK(int) rtDbgModDeferredImg_RvaToSegOffset(PRTDBGMODINT pMod, RTLDRADDR Rva, 518 518 PRTDBGSEGIDX piSeg, PRTLDRADDR poffSeg) 519 519 { 520 520 int rc = rtDbgModDeferredDoIt(pMod, false /*fForceRetry*/); 521 521 if (RT_SUCCESS(rc)) 522 rc = pMod->pImgVt->pfnRvaToSegOffset(pMod, uRva, piSeg, poffSeg);522 rc = pMod->pImgVt->pfnRvaToSegOffset(pMod, Rva, piSeg, poffSeg); 523 523 return rc; 524 524 } -
trunk/src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp
r57944 r57978 2137 2137 * Check if the cursor is at the end of the current DWARF unit. 2138 2138 * 2139 * @retval @ctrue if at the end or a cursor error is pending.2140 * @retval @cfalse if not.2139 * @retval true if at the end or a cursor error is pending. 2140 * @retval false if not. 2141 2141 * @param pCursor The cursor. 2142 2142 */ … … 2166 2166 * processing). 2167 2167 * 2168 * @retval @ctrue if at the end or a cursor error is pending.2169 * @retval @cfalse if not.2168 * @retval true if at the end or a cursor error is pending. 2169 * @retval false if not. 2170 2170 * @param pCursor The cursor. 2171 2171 */ … … 4015 4015 * 4016 4016 * @param pThis The DWARF instance. 4017 * @param pParent The parent DIE.4017 * @param pParentDie The parent DIE. 4018 4018 */ 4019 4019 static void rtDwarfInfo_FreeChildren(PRTDBGMODDWARF pThis, PRTDWARFDIE pParentDie) -
trunk/src/VBox/Runtime/common/path/RTPathGlob.cpp
r57944 r57978 376 376 /** 377 377 * Implements mapping a glob variable to multiple environment variable values. 378 * 379 * @param a_Name The variable name. 378 380 * @param a_apszVarNames Assumes to be a global variable that RT_ELEMENTS 379 381 * works correctly on. 382 * @param a_cbMaxValue The max expected value size. 380 383 */ 381 384 #define RTPATHMATCHVAR_MULTIPLE_ENVVARS(a_Name, a_apszVarNames, a_cbMaxValue) \ … … 451 454 452 455 /** 453 * @interface_method_impl{RTPATHMATCHVAR,pfnQuery, Enumerates the PATH} .456 * @interface_method_impl{RTPATHMATCHVAR,pfnQuery, Enumerates the PATH} 454 457 */ 455 458 static DECLCALLBACK(int) rtPathVarQuery_Path(uint32_t iItem, char *pszBuf, size_t cbBuf, size_t *pcchValue, … … 996 999 * @param pchPattern The pattern to compile. 997 1000 * @param cchPattern The length of the pattern. 1001 * @param fIgnoreCase Whether to ignore case or not when doing the 1002 * actual matching later on. 998 1003 * @param pAllocator Pointer to the instruction allocator & result 999 1004 * array. The compiled "program" starts at … … 1659 1664 * @param pGlob The glob instance data. 1660 1665 * @param offPath The current path offset/length. 1661 * @param iComp The current component. 1666 * @param iStarStarComp The star-star component index. 1667 * @param offStarStarPath The offset of the star-star component in the 1668 * pattern path. 1662 1669 */ 1663 1670 DECL_NO_INLINE(static, int) rtPathGlobExecRecursiveStarStar(PRTPATHGLOB pGlob, size_t offPath, uint32_t iStarStarComp, -
trunk/src/VBox/Runtime/r0drv/nt/initterm-r0drv-nt.cpp
r57358 r57978 136 136 * Tries a set against the current kernel. 137 137 * 138 * @retval @ctrue if it matched up, global variables are updated.139 * @retval @cfalse otherwise (no globals updated).138 * @retval true if it matched up, global variables are updated. 139 * @retval false otherwise (no globals updated). 140 140 * @param pSet The data set. 141 141 * @param pbPrcb Pointer to the processor control block. -
trunk/src/VBox/Runtime/r0drv/nt/mp-r0drv-nt.cpp
r57358 r57978 303 303 * 304 304 * @returns VINF_SUCCESS. 305 * @param pfnWorker The callback. 306 * @param pvUser1 User argument 1. 307 * @param pvUser2 User argument 2. 308 * @param idCpu First CPU to match, ultimately specific to the 309 * pfnNativeWrapper used. 310 * @param idCpu2 Second CPU to match, ultimately specific to the 311 * pfnNativeWrapper used. 312 * @param pcHits Where to return the number of this. Optional. 305 * @param pfnWorker The callback. 306 * @param pvUser1 User argument 1. 307 * @param pvUser2 User argument 2. 308 * @param pfnNativeWrapper The wrapper between the NT and IPRT callbacks. 309 * @param idCpu First CPU to match, ultimately specific to the 310 * pfnNativeWrapper used. 311 * @param idCpu2 Second CPU to match, ultimately specific to the 312 * pfnNativeWrapper used. 313 * @param pcHits Where to return the number of this. Optional. 313 314 */ 314 315 static int rtMpCallUsingBroadcastIpi(PFNRTMPWORKER pfnWorker, void *pvUser1, void *pvUser2, -
trunk/src/VBox/Runtime/r0drv/nt/ntBldSymDb.cpp
r57358 r57978 174 174 * Returns the name we wish to use in the C code. 175 175 * @returns Member name. 176 * @param p StructThe member descriptor.176 * @param pMember The member descriptor. 177 177 */ 178 178 static const char *figureCMemberName(MYMEMBER const *pMember) … … 339 339 * @returns Fully complained exit code. 340 340 * @param pOsVerInfo The OS version info. 341 * @param enmArch The NT architecture of the incoming PDB. 342 * @param pszPdb The PDB file name. 341 343 */ 342 344 static RTEXITCODE saveStructures(PRTNTSDBOSVER pOsVerInfo, MYARCH enmArch, const char *pszPdb) … … 987 989 * @param cchDir The length of pszDir in pszDir. 988 990 * @param pDirEntry Pointer to the directory buffer. 991 * @param iLogDepth The logging depth. 989 992 */ 990 993 static RTEXITCODE processDirSub(char *pszDir, size_t cchDir, PRTDIRENTRYEX pDirEntry, int iLogDepth) -
trunk/src/VBox/Runtime/r3/nt/pathint-nt.cpp
r57358 r57978 432 432 * @param pszPath The UTF-8 path. 433 433 * @param fDesiredAccess See NtCreateFile. 434 * @param fFileAttribs See NtCreateFile.435 434 * @param fShareAccess See NtCreateFile. 436 * @param fCreateDisposition See NtCreateFile.437 435 * @param fCreateOptions See NtCreateFile. 438 436 * @param fObjAttribs The OBJECT_ATTRIBUTES::Attributes value, see -
trunk/src/VBox/Runtime/r3/socket.cpp
r57358 r57978 282 282 * @param pAddr Pointer to the generic IPRT network address. 283 283 * @param pDst The source address. 284 * @param cb SrcThe size of the source address.284 * @param cbDst The size of the source address. 285 285 * @param pcbAddr Where to store the size of the returned address. 286 286 * Optional -
trunk/src/VBox/Runtime/r3/win/process-win.cpp
r57916 r57978 111 111 * caller must also check if any of the necessary APIs are NULL pointers. 112 112 * @{ */ 113 /** Init once structure for run-as-user functions we need. .*/113 /** Init once structure for run-as-user functions we need. */ 114 114 static RTONCE g_rtProcWinResolveOnce = RTONCE_INITIALIZER; 115 115 /* kernel32.dll: */ … … 1154 1154 * 1155 1155 * @returns true on success, false on failure. 1156 * @param h WinStation The window station.1156 * @param hDesktop The desktop handle. 1157 1157 * @param pSid The SID. 1158 1158 */
Note:
See TracChangeset
for help on using the changeset viewer.

