Changeset 28319 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Apr 14, 2010 6:25:23 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60078
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/PDMR0Device.cpp
r26376 r28319 162 162 163 163 164 /** @interface_method_impl{PDMDEVHLPR0,pfnVMState} */ 165 static DECLCALLBACK(VMSTATE) pdmR0DevHlp_VMState(PPDMDEVINS pDevIns) 166 { 167 PDMDEV_ASSERT_DEVINS(pDevIns); 168 169 VMSTATE enmVMState = pDevIns->Internal.s.pVMR0->enmVMState; 170 171 LogFlow(("pdmR0DevHlp_VMState: caller=%p/%d: returns %d\n", pDevIns, pDevIns->iInstance, enmVMState)); 172 return enmVMState; 173 } 174 175 164 176 /** @interface_method_impl{PDMDEVHLPR0,pfnVMSetError} */ 165 177 static DECLCALLBACK(int) pdmR0DevHlp_VMSetError(PPDMDEVINS pDevIns, int rc, RT_SRC_POS_DECL, const char *pszFormat, ...) … … 255 267 pdmR0DevHlp_PhysWrite, 256 268 pdmR0DevHlp_A20IsEnabled, 269 pdmR0DevHlp_VMState, 257 270 pdmR0DevHlp_VMSetError, 258 271 pdmR0DevHlp_VMSetErrorV,
Note:
See TracChangeset
for help on using the changeset viewer.