Changeset 12653 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Sep 22, 2008 4:03:25 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 36942
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPCI.cpp
r12569 r12653 1333 1333 1334 1334 /** 1335 * @copydoc PDMPCIBUSREG::pfnSetConfigCallbacks HC1335 * @copydoc PDMPCIBUSREG::pfnSetConfigCallbacksR3 1336 1336 */ 1337 1337 static DECLCALLBACK(void) pciSetConfigCallbacks(PPDMDEVINS pDevIns, PPCIDEVICE pPciDev, PFNPCICONFIGREAD pfnRead, PPFNPCICONFIGREAD ppfnReadOld, -
trunk/src/VBox/Devices/PC/DevPcBios.h
r11255 r12653 30 30 31 31 32 /** @def MPS_TABLE_BASE32 /** @def VBOX_MPS_TABLE_BASE 33 33 * 34 34 * Must be located in the same page as the DMI table. … … 41 41 42 42 43 /** @def VBOX_VMI_ TABLE_BASE43 /** @def VBOX_VMI_BIOS_BASE 44 44 * 45 45 * Must be located between 0xC0000 and 0xDEFFF, otherwise it will not be -
trunk/src/VBox/Devices/PC/DevPit-i8254.cpp
r12643 r12653 76 76 * If not defined, it will be flipped correctly. */ 77 77 //#define FAKE_REFRESH_CLOCK 78 #ifdef DOXYGEN_RUNNING 79 # define FAKE_REFRESH_CLOCK 80 #endif 78 81 79 82 -
trunk/src/VBox/Devices/Storage/DrvBlock.cpp
r11286 r12653 259 259 #define PDMIBLOCKASYNC_2_DRVBLOCK(pInterface) ( (PDRVBLOCK)((uintptr_t)pInterface - RT_OFFSETOF(DRVBLOCK, IBlockAsync)) ) 260 260 261 /** @copydoc PDMIBLOCKASYNC::pfn Read */261 /** @copydoc PDMIBLOCKASYNC::pfnStartRead */ 262 262 static DECLCALLBACK(int) drvblockAsyncReadStart(PPDMIBLOCKASYNC pInterface, uint64_t off, PPDMDATASEG pSeg, unsigned cSeg, size_t cbRead, void *pvUser) 263 263 { … … 278 278 279 279 280 /** @copydoc PDMIBLOCKASYNC::pfn Write */280 /** @copydoc PDMIBLOCKASYNC::pfnStartWrite */ 281 281 static DECLCALLBACK(int) drvblockAsyncWriteStart(PPDMIBLOCKASYNC pInterface, uint64_t off, PPDMDATASEG pSeg, unsigned cSeg, size_t cbWrite, void *pvUser) 282 282 {
Note:
See TracChangeset
for help on using the changeset viewer.