Changeset 90784 in vbox for trunk/src/VBox/VMM/VMMR3/PDMAsyncCompletionFileFailsafe.cpp
- Timestamp:
- Aug 23, 2021 9:42:32 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMAsyncCompletionFileFailsafe.cpp
r82968 r90784 191 191 { 192 192 PPDMASYNCCOMPLETIONENDPOINTFILE pEndpointNew = pAioMgr->BlockingEventData.AddEndpoint.pEndpoint; 193 AssertMsg( VALID_PTR(pEndpointNew), ("Adding endpoint event without a endpoint to add\n"));193 AssertMsg(RT_VALID_PTR(pEndpointNew), ("Adding endpoint event without a endpoint to add\n")); 194 194 195 195 pEndpointNew->enmState = PDMASYNCCOMPLETIONENDPOINTFILESTATE_ACTIVE; … … 214 214 { 215 215 PPDMASYNCCOMPLETIONENDPOINTFILE pEndpointRemove = pAioMgr->BlockingEventData.RemoveEndpoint.pEndpoint; 216 AssertMsg( VALID_PTR(pEndpointRemove), ("Removing endpoint event without a endpoint to remove\n"));216 AssertMsg(RT_VALID_PTR(pEndpointRemove), ("Removing endpoint event without a endpoint to remove\n")); 217 217 218 218 pEndpointRemove->enmState = PDMASYNCCOMPLETIONENDPOINTFILESTATE_REMOVING; … … 235 235 { 236 236 PPDMASYNCCOMPLETIONENDPOINTFILE pEndpointClose = pAioMgr->BlockingEventData.CloseEndpoint.pEndpoint; 237 AssertMsg( VALID_PTR(pEndpointClose), ("Close endpoint event without a endpoint to Close\n"));237 AssertMsg(RT_VALID_PTR(pEndpointClose), ("Close endpoint event without a endpoint to Close\n")); 238 238 239 239 pEndpointClose->enmState = PDMASYNCCOMPLETIONENDPOINTFILESTATE_CLOSING;
Note:
See TracChangeset
for help on using the changeset viewer.