Changeset 32156 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Aug 31, 2010 3:26:31 PM (14 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMDriver.cpp
r32135 r32156 1352 1352 } 1353 1353 1354 1354 1355 /** @interface_method_impl{PDMDRVHLP,pfnFTSetCheckpoint} */ 1355 1356 static DECLCALLBACK(int) pdmR3DrvHlp_FTSetCheckpoint(PPDMDRVINS pDrvIns, FTMCHECKPOINTTYPE enmType) … … 1358 1359 return FTMSetCheckpoint(pDrvIns->Internal.s.pVMR3, enmType); 1359 1360 } 1361 1360 1362 1361 1363 /** -
trunk/src/VBox/VMM/VMMGC/PDMGCDevice.cpp
r32135 r32156 684 684 } 685 685 686 686 687 /** @interface_method_impl{PDMDRVHLPRC,pfnFTSetCheckpoint} */ 687 688 static DECLCALLBACK(int) pdmRCDrvHlp_FTSetCheckpoint(PPDMDRVINS pDrvIns, FTMCHECKPOINTTYPE enmType) … … 690 691 return FTMSetCheckpoint(pDrvIns->Internal.s.pVMRC, enmType); 691 692 } 693 692 694 693 695 /** -
trunk/src/VBox/VMM/VMMR0/PDMR0Device.cpp
r32135 r32156 716 716 } 717 717 718 718 719 /** @interface_method_impl{PDMDRVHLPR0,pfnFTSetCheckpoint} */ 719 720 static DECLCALLBACK(int) pdmR0DrvHlp_FTSetCheckpoint(PPDMDRVINS pDrvIns, FTMCHECKPOINTTYPE enmType) … … 722 723 return FTMSetCheckpoint(pDrvIns->Internal.s.pVMR0, enmType); 723 724 } 725 724 726 725 727 /**
Note:
See TracChangeset
for help on using the changeset viewer.