VirtualBox

Changeset 12989 in vbox for trunk/src/VBox/VMM/PDMQueue.cpp


Ignore:
Timestamp:
Oct 6, 2008 2:15:39 AM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
37424
Message:

VMM + VBox/cdefs.h: consolidated all the XYZ*DECLS of the VMM into VMM*DECL. Removed dead DECL and IN_XYZ* macros.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/PDMQueue.cpp

    r12986 r12989  
    190190 * @thread  Emulation thread only.
    191191 */
    192 PDMR3DECL(int) PDMR3QueueCreateDevice(PVM pVM, PPDMDEVINS pDevIns, RTUINT cbItem, RTUINT cItems, uint32_t cMilliesInterval,
     192VMMR3DECL(int) PDMR3QueueCreateDevice(PVM pVM, PPDMDEVINS pDevIns, RTUINT cbItem, RTUINT cItems, uint32_t cMilliesInterval,
    193193                                      PFNPDMQUEUEDEV pfnCallback, bool fRZEnabled, PPDMQUEUE *ppQueue)
    194194{
     
    239239 * @thread  Emulation thread only.
    240240 */
    241 PDMR3DECL(int) PDMR3QueueCreateDriver(PVM pVM, PPDMDRVINS pDrvIns, RTUINT cbItem, RTUINT cItems, uint32_t cMilliesInterval,
     241VMMR3DECL(int) PDMR3QueueCreateDriver(PVM pVM, PPDMDRVINS pDrvIns, RTUINT cbItem, RTUINT cItems, uint32_t cMilliesInterval,
    242242                                      PFNPDMQUEUEDRV pfnCallback, PPDMQUEUE *ppQueue)
    243243{
     
    288288 * @thread  Emulation thread only.
    289289 */
    290 PDMR3DECL(int) PDMR3QueueCreateInternal(PVM pVM, RTUINT cbItem, RTUINT cItems, uint32_t cMilliesInterval,
     290VMMR3DECL(int) PDMR3QueueCreateInternal(PVM pVM, RTUINT cbItem, RTUINT cItems, uint32_t cMilliesInterval,
    291291                                        PFNPDMQUEUEINT pfnCallback, bool fRZEnabled, PPDMQUEUE *ppQueue)
    292292{
     
    336336 * @thread  Emulation thread only.
    337337 */
    338 PDMR3DECL(int) PDMR3QueueCreateExternal(PVM pVM, RTUINT cbItem, RTUINT cItems, uint32_t cMilliesInterval, PFNPDMQUEUEEXT pfnCallback, void *pvUser, PPDMQUEUE *ppQueue)
     338VMMR3DECL(int) PDMR3QueueCreateExternal(PVM pVM, RTUINT cbItem, RTUINT cItems, uint32_t cMilliesInterval, PFNPDMQUEUEEXT pfnCallback, void *pvUser, PPDMQUEUE *ppQueue)
    339339{
    340340    LogFlow(("PDMR3QueueCreateExternal: cbItem=%d cItems=%d cMilliesInterval=%d pfnCallback=%p\n", cbItem, cItems, cMilliesInterval, pfnCallback));
     
    376376 * @thread  Emulation thread only.
    377377 */
    378 PDMR3DECL(int) PDMR3QueueDestroy(PPDMQUEUE pQueue)
     378VMMR3DECL(int) PDMR3QueueDestroy(PPDMQUEUE pQueue)
    379379{
    380380    LogFlow(("PDMR3QueueDestroy: pQueue=%p\n", pQueue));
     
    462462 * @thread  Emulation thread only.
    463463 */
    464 PDMR3DECL(int) PDMR3QueueDestroyDevice(PVM pVM, PPDMDEVINS pDevIns)
     464VMMR3DECL(int) PDMR3QueueDestroyDevice(PVM pVM, PPDMDEVINS pDevIns)
    465465{
    466466    LogFlow(("PDMR3QueueDestroyDevice: pDevIns=%p\n", pDevIns));
     
    511511 * @thread  Emulation thread only.
    512512 */
    513 PDMR3DECL(int) PDMR3QueueDestroyDriver(PVM pVM, PPDMDRVINS pDrvIns)
     513VMMR3DECL(int) PDMR3QueueDestroyDriver(PVM pVM, PPDMDRVINS pDrvIns)
    514514{
    515515    LogFlow(("PDMR3QueueDestroyDriver: pDrvIns=%p\n", pDrvIns));
     
    612612 * @thread  Emulation thread only.
    613613 */
    614 PDMR3DECL(void) PDMR3QueueFlushAll(PVM pVM)
     614VMMR3DECL(void) PDMR3QueueFlushAll(PVM pVM)
    615615{
    616616    VM_ASSERT_EMT(pVM);
     
    795795 * @param   pQueue  The queue to flush. Only used in Ring-3.
    796796 */
    797 PDMR3DECL(void) PDMR3QueueFlushWorker(PVM pVM, PPDMQUEUE pQueue)
     797VMMR3DECL(void) PDMR3QueueFlushWorker(PVM pVM, PPDMQUEUE pQueue)
    798798{
    799799    Assert(pVM->pdm.s.pQueueFlushR0 || pVM->pdm.s.pQueueFlushRC || pQueue);
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