Changeset 44896 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Mar 1, 2013 8:43:23 PM (12 years ago)
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/dbgf.h
r44691 r44896 1323 1323 /** Sub-field flags, DBGFREGSUBFIELD_FLAGS_XXX. */ 1324 1324 uint8_t fFlags; 1325 /** Getter (optional). */ 1325 /** Getter (optional). 1326 * @remarks Does not take the device lock or anything like that. 1327 */ 1326 1328 DECLCALLBACKMEMBER(int, pfnGet)(void *pvUser, struct DBGFREGSUBFIELD const *pSubField, PRTUINT128U puValue); 1327 /** Setter (optional). */ 1329 /** Setter (optional). 1330 * @remarks Does not take the device lock or anything like that. 1331 */ 1328 1332 DECLCALLBACKMEMBER(int, pfnSet)(void *pvUser, struct DBGFREGSUBFIELD const *pSubField, RTUINT128U uValue, RTUINT128U fMask); 1329 1333 } DBGFREGSUBFIELD; … … 1377 1381 * thuse the 'off' prefix. */ 1378 1382 uint32_t offRegister; 1379 /** Getter. */ 1383 /** Getter. 1384 * @remarks Does not take the device lock or anything like that. 1385 */ 1380 1386 DECLCALLBACKMEMBER(int, pfnGet)(void *pvUser, struct DBGFREGDESC const *pDesc, PDBGFREGVAL pValue); 1381 /** Setter. */ 1387 /** Setter. 1388 * @remarks Does not take the device lock or anything like that. 1389 */ 1382 1390 DECLCALLBACKMEMBER(int, pfnSet)(void *pvUser, struct DBGFREGDESC const *pDesc, PCDBGFREGVAL pValue, PCDBGFREGVAL pfMask); 1383 1391 /** Aliases (optional). */ -
trunk/include/VBox/vmm/pdmdev.h
r44691 r44896 2810 2810 * @param pDevIns The device instance. 2811 2811 * @param paRegisters The register descriptors. 2812 * 2813 * @remarks The device critical section is NOT entered prior to working the 2814 * callbacks registered via this helper! 2812 2815 */ 2813 2816 DECLR3CALLBACKMEMBER(int, pfnDBGFRegRegister,(PPDMDEVINS pDevIns, PCDBGFREGDESC paRegisters));
Note:
See TracChangeset
for help on using the changeset viewer.