Changeset 26969 in vbox for trunk/src/VBox/Devices/Graphics/HGSMI
- Timestamp:
- Mar 2, 2010 8:28:01 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58266
- Location:
- trunk/src/VBox/Devices/Graphics/HGSMI
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/HGSMI/HGSMIHost.cpp
r26556 r26969 1677 1677 1678 1678 int rc = hgsmiGuestCompletionFIFOAlloc (pIns, &pEntry); 1679 1679 AssertRC(rc); 1680 1680 if (RT_SUCCESS (rc)) 1681 1681 { … … 1683 1683 1684 1684 rc = hgsmiFIFOLock(pIns); 1685 AssertRC(rc); 1685 1686 if (RT_SUCCESS (rc)) 1686 1687 { -
trunk/src/VBox/Devices/Graphics/HGSMI/HGSMIHost.h
r25062 r26969 136 136 int HGSMIHostSaveStateExec (PHGSMIINSTANCE pIns, PSSMHANDLE pSSM); 137 137 138 #if 0 139 /* Submit this buffer to the guest asynchronously. */ 140 int HGSMIHostBufferProcessAsync (PHGSMIINSTANCE pIns, 141 void *pvMem, 142 PFNHGSMIBUFFERPROCESSED); 138 #ifdef VBOXVDMA 139 int HGSMICompleteGuestCommand(PHGSMIINSTANCE pIns, void *pvMem, bool bDoIrq); 143 140 #endif 144 141 -
trunk/src/VBox/Devices/Graphics/HGSMI/HGSMIHostHlp.h
r26876 r26969 50 50 } 51 51 52 DECLINLINE(bool) hgsmiListIsEmpty (HGSMILIST *pList) 53 { 54 return !pList->pHead; 55 } 56 52 57 DECLINLINE(void) hgsmiListInit (HGSMILIST *pList) 53 58 {
Note:
See TracChangeset
for help on using the changeset viewer.