Changeset 90789 in vbox for trunk/src/VBox/Runtime/r3/solaris
- Timestamp:
- Aug 23, 2021 10:27:29 AM (3 years ago)
- Location:
- trunk/src/VBox/Runtime/r3/solaris
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/solaris/fileaio-solaris.cpp
r82968 r90789 237 237 * completion port. 238 238 */ 239 AssertMsg(VALID_PTR(pReqInt->pCtxInt), 240 ("Invalid state. Request was canceled but wasn't submitted\n")); 239 AssertMsg(RT_VALID_PTR(pReqInt->pCtxInt), ("Invalid state. Request was canceled but wasn't submitted\n")); 241 240 242 241 ASMAtomicDecS32(&pReqInt->pCtxInt->cRequests); -
trunk/src/VBox/Runtime/r3/solaris/krnlmod-solaris.cpp
r86301 r90789 196 196 uint32_t *pcEntries) 197 197 { 198 AssertReturn(VALID_PTR(pahKrnlModInfo) || cEntriesMax == 0, VERR_INVALID_PARAMETER); 198 AssertPtrReturn(pahKrnlModInfo, VERR_INVALID_POINTER); 199 AssertReturn(cEntriesMax == 0, VERR_INVALID_PARAMETER); 199 200 200 201 uint32_t cKmodsLoaded = RTKrnlModLoadedGetCount();
Note:
See TracChangeset
for help on using the changeset viewer.