Changeset 12892 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Oct 2, 2008 7:22:55 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 37295
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Serial/DrvHostSerial.cpp
r12384 r12892 1107 1107 /* Open again to make use after suspend possible again. */ 1108 1108 rc = RTFileOpen(&pData->DeviceFile, pData->pszDevicePath, RTFILE_O_OPEN | RTFILE_O_READWRITE); 1109 AssertMsg (RT_SUCCESS(rc), ("Opening device file again failed rc=%Vrc\n", rc));1109 AssertMsgRC(rc, ("Opening device file again failed rc=%Vrc\n", rc)); 1110 1110 1111 1111 if (RT_FAILURE(rc)) -
trunk/src/VBox/Devices/Storage/DrvVD.cpp
r12637 r12892 888 888 { 889 889 rc = RTCacheCreate(&pThis->pCache, 0, sizeof(DRVVDASYNCTASK), RTOBJCACHE_PROTECT_INSERT); 890 AssertMsg (RT_SUCCESS(rc), ("Failed to create cache rc=%Rrc\n", rc));890 AssertMsgRC(rc, ("Failed to create cache rc=%Rrc\n", rc)); 891 891 } 892 892 } -
trunk/src/VBox/Devices/Storage/VmdkHDDCore.cpp
r12641 r12892 5084 5084 NULL, pvUser, 5085 5085 NULL /* Nothing required after read. */); 5086 AssertMsg (RT_SUCCESS(rc), ("Failed to enqueue tasks rc=%Rrc\n", rc));5086 AssertMsgRC(rc, ("Failed to enqueue tasks rc=%Rrc\n", rc)); 5087 5087 } 5088 5088 … … 5220 5220 NULL, pvUser, 5221 5221 NULL /* Nothing required after read. */); 5222 AssertMsg (RT_SUCCESS(rc), ("Failed to enqueue tasks rc=%Rrc\n", rc));5222 AssertMsgRC(rc, ("Failed to enqueue tasks rc=%Rrc\n", rc)); 5223 5223 } 5224 5224
Note:
See TracChangeset
for help on using the changeset viewer.