Changeset 80295 in vbox for trunk/src/VBox/Devices/Graphics/HGSMI
- Timestamp:
- Aug 15, 2019 3:46:09 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132753
- Location:
- trunk/src/VBox/Devices/Graphics/HGSMI
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/HGSMI/HGSMIHost.cpp
r76553 r80295 59 59 */ 60 60 61 #define LOG_GROUP LOG_GROUP_HGSMI 61 62 #include <iprt/alloc.h> 62 63 #include <iprt/critsect.h> … … 68 69 #include <VBox/AssertGuest.h> 69 70 #include <iprt/errcore.h> 70 #define LOG_GROUP LOG_GROUP_HGSMI71 71 #include <VBox/log.h> 72 72 #include <VBox/vmm/ssm.h> 73 #include <VBox/vmm/vmm.h> 73 74 74 75 #include "HGSMIHost.h" … … 326 327 AssertPtr(pIns); 327 328 328 VM_ASSERT_EMT(pIns->pVM);329 Assert(VMMGetCpu(pIns->pVM) != NULL); 329 330 330 331 #ifndef VBOX_WITH_WDDM … … 343 344 static bool hgsmiProcessHostCmdCompletion(HGSMIINSTANCE *pIns, HGSMIOFFSET offBuffer, bool fCompleteFirst) 344 345 { 345 VM_ASSERT_EMT(pIns->pVM);346 Assert(VMMGetCpu(pIns->pVM) != NULL); 346 347 347 348 int rc = hgsmiFIFOLock(pIns); … … 413 414 LogFlowFunc(("pIns %p\n", pIns)); 414 415 415 VM_ASSERT_EMT(pIns->pVM);416 Assert(VMMGetCpu(pIns->pVM) != NULL); 416 417 417 418 AssertPtrReturn(pIns->pHGFlags, HGSMIOFFSET_VOID); -
trunk/src/VBox/Devices/Graphics/HGSMI/HGSMIHost.h
r76565 r80295 22 22 #endif 23 23 24 #include <VBox/vmm/vm.h> 25 24 #include <VBox/types.h> 26 25 #include <HGSMI.h> 27 26 #include <HGSMIChSetup.h>
Note:
See TracChangeset
for help on using the changeset viewer.