VirtualBox

Changeset 44896 in vbox for trunk/include/VBox/vmm


Ignore:
Timestamp:
Mar 1, 2013 8:43:23 PM (12 years ago)
Author:
vboxsync
Message:

Clarified the register getter and setter interface callbacks.

Location:
trunk/include/VBox/vmm
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/vmm/dbgf.h

    r44691 r44896  
    13231323    /** Sub-field flags, DBGFREGSUBFIELD_FLAGS_XXX.  */
    13241324    uint8_t         fFlags;
    1325     /** Getter (optional). */
     1325    /** Getter (optional).
     1326     * @remarks Does not take the device lock or anything like that.
     1327     */
    13261328    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     */
    13281332    DECLCALLBACKMEMBER(int, pfnSet)(void *pvUser, struct DBGFREGSUBFIELD const *pSubField, RTUINT128U uValue, RTUINT128U fMask);
    13291333} DBGFREGSUBFIELD;
     
    13771381     * thuse the 'off' prefix. */
    13781382    uint32_t                offRegister;
    1379     /** Getter. */
     1383    /** Getter.
     1384     * @remarks Does not take the device lock or anything like that.
     1385     */
    13801386    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     */
    13821390    DECLCALLBACKMEMBER(int, pfnSet)(void *pvUser, struct DBGFREGDESC const *pDesc, PCDBGFREGVAL pValue, PCDBGFREGVAL pfMask);
    13831391    /** Aliases (optional). */
  • trunk/include/VBox/vmm/pdmdev.h

    r44691 r44896  
    28102810     * @param   pDevIns             The device instance.
    28112811     * @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!
    28122815     */
    28132816    DECLR3CALLBACKMEMBER(int, pfnDBGFRegRegister,(PPDMDEVINS pDevIns, PCDBGFREGDESC paRegisters));
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette