Changeset 3868 in vbox
- Timestamp:
- Jul 26, 2007 12:03:32 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23230
- Location:
- trunk/src/VBox/Additions/common/VBoxGuestLib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/GenericRequest.cpp
r3097 r3868 25 25 #include <iprt/asm.h> 26 26 #include <iprt/string.h> 27 #include <iprt/assert.h> 27 28 28 29 DECLVBGL(int) VbglGRAlloc (VMMDevRequestHeader **ppReq, uint32_t cbSize, VMMDevRequestType reqType) … … 43 44 if (!pReq) 44 45 { 45 dprintf(("VbglGRAlloc: no memory\n"));46 AssertMsgFailed(("VbglGRAlloc: no memory\n")); 46 47 rc = VERR_NO_MEMORY; 47 48 } -
trunk/src/VBox/Additions/common/VBoxGuestLib/PhysHeap.cpp
r3839 r3868 52 52 */ 53 53 54 #define VBGL_PH_ASSERT AssertRelease55 #define VBGL_PH_ASSERTMsg AssertReleaseMsg54 #define VBGL_PH_ASSERT AssertRelease 55 #define VBGL_PH_ASSERTMsg AssertReleaseMsg 56 56 57 57 // #define DUMPHEAP -
trunk/src/VBox/Additions/common/VBoxGuestLib/SysHlp.cpp
r3673 r3868 42 42 { 43 43 rc = VERR_NOT_SUPPORTED; 44 AssertMsgFailed(("IoAllocateMdl %VGv %x failed!!\n", pv, u32Size)); 44 45 } 45 46 else … … 57 58 IoFreeMdl (pMdl); 58 59 rc = VERR_INVALID_PARAMETER; 60 AssertMsgFailed(("MmProbeAndLockPages %VGv %x failed!!\n", pv, u32Size)); 59 61 } 60 62 }
Note:
See TracChangeset
for help on using the changeset viewer.