VirtualBox

Changeset 81466 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Oct 23, 2019 1:20:34 AM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
134191
Message:

pdmdev.h: Added missing PDMDevHlpCritSectDelete. bugref:9218

File:
1 edited

Legend:

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

    r81406 r81466  
    22732273
    22742274/** Current PDMDEVHLPR3 version number. */
    2275 #define PDM_DEVHLPR3_VERSION                    PDM_VERSION_MAKE_PP(0xffe7, 26, 0)
     2275#define PDM_DEVHLPR3_VERSION                    PDM_VERSION_MAKE_PP(0xffe7, 27, 0)
    22762276
    22772277/**
     
    38423842    DECLR3CALLBACKMEMBER(bool,     pfnCritSectHasWaiters,(PPDMDEVINS pDevIns, PCPDMCRITSECT pCritSect));
    38433843    DECLR3CALLBACKMEMBER(uint32_t, pfnCritSectGetRecursion,(PPDMDEVINS pDevIns, PCPDMCRITSECT pCritSect));
     3844    DECLR3CALLBACKMEMBER(int,      pfnCritSectDelete,(PPDMDEVINS pDevIns, PPDMCRITSECT pCritSect));
    38443845    /** @} */
    38453846
     
    72477248
    72487249/**
     7250 * @copydoc PDMR3CritSectDelete
     7251 * @param   pDevIns  The device instance.
     7252 */
     7253DECLINLINE(int) PDMDevHlpCritSectDelete(PPDMDEVINS pDevIns, PPDMCRITSECT pCritSect)
     7254{
     7255    return pDevIns->pHlpR3->pfnCritSectDelete(pDevIns, pCritSect);
     7256}
     7257
     7258/**
    72497259 * @copydoc PDMDEVHLPR3::pfnThreadCreate
    72507260 */
Note: See TracChangeset for help on using the changeset viewer.

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