VirtualBox

Changeset 133 in vbox for trunk


Ignore:
Timestamp:
Jan 18, 2007 2:12:31 PM (18 years ago)
Author:
vboxsync
Message:

REMR3ReplayHandlerNotifications

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler/new/VBoxREMWrapper.cpp

    r1 r133  
    140140 * anything. But but MSC code is calling GCC code, we'll have to save esi and edi.
    141141 *
    142  *
    143142 */
    144143
     
    316315static DECLCALLBACKPTR(void, pfnREMR3A20Set)(PVM, bool);
    317316static DECLCALLBACKPTR(void, pfnREMR3ReplayInvalidatedPages)(PVM);
     317static DECLCALLBACKPTR(void, pfnREMR3ReplayHandlerNotifications)(PVM pVM);
    318318static DECLCALLBACKPTR(void, pfnREMR3NotifyPhysRamRegister)(PVM, RTGCPHYS, RTUINT, void *, unsigned);
    319319static DECLCALLBACKPTR(void, pfnREMR3NotifyPhysReserve)(PVM, RTGCPHYS, RTUINT);
     
    851851    { "REMR3A20Set",                            (void *)&pfnREMR3A20Set,                            &g_aArgsA20Set[0],                          ELEMENTS(g_aArgsA20Set),                            REMFNDESC_FLAGS_RET_VOID,   0,              NULL },
    852852    { "REMR3ReplayInvalidatedPages",            (void *)&pfnREMR3ReplayInvalidatedPages,            &g_aArgsVM[0],                              ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_VOID,   0,              NULL },
     853    { "REMR3ReplayHandlerNotifications",        (void *)&pfnREMR3ReplayHandlerNotifications,        &g_aArgsVM[0],                              ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_VOID,   0,              NULL },
    853854    { "REMR3NotifyPhysRamRegister",             (void *)&pfnREMR3NotifyPhysRamRegister,             &g_aArgsNotifyPhysRamRegister[0],           ELEMENTS(g_aArgsNotifyPhysRamRegister),             REMFNDESC_FLAGS_RET_VOID,   0,              NULL },
    854855    { "REMR3NotifyPhysReserve",                 (void *)&pfnREMR3NotifyPhysReserve,                 &g_aArgsNotifyPhysReserve[0],               ELEMENTS(g_aArgsNotifyPhysReserve),                 REMFNDESC_FLAGS_RET_VOID,   0,              NULL },
     
    16451646}
    16461647
     1648REMR3DECL(void) REMR3ReplayHandlerNotifications(PVM pVM)
     1649{
     1650#ifndef USE_REM_STUBS
     1651    Assert(VALID_PTR(pfnREMR3ReplayHandlerNotifications));
     1652    pfnREMR3ReplayHandlerNotifications(pVM);
     1653#endif
     1654}
     1655
    16471656REMR3DECL(int) REMR3NotifyCodePageChanged(PVM pVM, RTGCPTR pvCodePage)
    16481657{
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