Changeset 63451 in vbox for trunk/src/VBox/Runtime/r0drv/darwin
- Timestamp:
- Aug 15, 2016 12:39:40 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110098
- Location:
- trunk/src/VBox/Runtime/r0drv/darwin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/alloc-r0drv-darwin.cpp
r62477 r63451 29 29 * Header Files * 30 30 *********************************************************************************************************************************/ 31 #pragma GCC diagnostic ignored "-Wdeprecated-declarations" /* (IOMallocContiguous et al are deprecated) */ 31 32 #include "the-darwin-kernel.h" 32 33 #include "internal/iprt.h" -
trunk/src/VBox/Runtime/r0drv/darwin/dbgkrnlinfo-r0drv-darwin.cpp
r62477 r63451 771 771 /* Validate the sections. */ 772 772 uint32_t uAlignment = 0; 773 uintptr_t uAddr = pSeg->vmaddr;774 773 MY_SECTION const *paSects = (MY_SECTION const *)(pSeg + 1); 775 774 for (uint32_t i = 0; i < pSeg->nsects; i++) … … 1167 1166 AssertPtrReturn(pThis, VERR_INVALID_HANDLE); 1168 1167 AssertMsgReturn(pThis->u32Magic == RTDBGKRNLINFO_MAGIC, ("%p: u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_HANDLE); 1169 AssertPtrReturn(pszMember, VERR_INVALID_PARAMETER); 1170 AssertPtrReturn(pszStructure, VERR_INVALID_PARAMETER); 1171 AssertPtrReturn(poffMember, VERR_INVALID_PARAMETER); 1168 AssertPtrReturn(pszMember, VERR_INVALID_POINTER); 1169 AssertPtrReturn(pszModule, VERR_INVALID_POINTER); 1170 AssertPtrReturn(pszStructure, VERR_INVALID_POINTER); 1171 AssertPtrReturn(poffMember, VERR_INVALID_POINTER); 1172 1172 return VERR_NOT_FOUND; 1173 1173 }
Note:
See TracChangeset
for help on using the changeset viewer.