VirtualBox

Ignore:
Timestamp:
Oct 24, 2008 5:48:59 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
38439
Message:

#1865: REM (VMM bits) - moved EMFlushREMTBs to REMFlushTBs, deleted dead REMGC.cpp.

File:
1 edited

Legend:

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

    r13532 r13565  
    337337static DECLCALLBACKPTR(int, pfnREMR3EmulateInstruction)(PVM);
    338338static DECLCALLBACKPTR(int, pfnREMR3Run)(PVM);
    339 static DECLCALLBACKPTR(int, pfnREMR3State)(PVM, bool fFlushTBs);
     339static DECLCALLBACKPTR(int, pfnREMR3State)(PVM);
    340340static DECLCALLBACKPTR(int, pfnREMR3StateBack)(PVM);
    341341static DECLCALLBACKPTR(void, pfnREMR3StateUpdate)(PVM);
     
    988988    { REMPARMDESC_FLAGS_INT,        sizeof(size_t), NULL }
    989989};
    990 static const REMPARMDESC g_aArgsState[] =
    991 {
    992     { REMPARMDESC_FLAGS_INT,        sizeof(PVM), NULL },
    993     { REMPARMDESC_FLAGS_INT,        sizeof(bool), NULL }
    994 };
    995990
    996991/** @} */
     
    10091004    { "REMR3EmulateInstruction",                (void *)&pfnREMR3EmulateInstruction,                &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_INT,    sizeof(int),    NULL },
    10101005    { "REMR3Run",                               (void *)&pfnREMR3Run,                               &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_INT,    sizeof(int),    NULL },
    1011     { "REMR3State",                             (void *)&pfnREMR3State,                             &g_aArgsState[0],                           RT_ELEMENTS(g_aArgsState),                             REMFNDESC_FLAGS_RET_INT,    sizeof(int),    NULL },
     1006    { "REMR3State",                             (void *)&pfnREMR3State,                             &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_INT,    sizeof(int),    NULL },
    10121007    { "REMR3StateBack",                         (void *)&pfnREMR3StateBack,                         &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_INT,    sizeof(int),    NULL },
    10131008    { "REMR3StateUpdate",                       (void *)&pfnREMR3StateUpdate,                       &g_aArgsVM[0],                              RT_ELEMENTS(g_aArgsVM),                                REMFNDESC_FLAGS_RET_VOID,   0,              NULL },
     
    19911986}
    19921987
    1993 REMR3DECL(int) REMR3State(PVM pVM, bool fFlushTBs)
     1988REMR3DECL(int) REMR3State(PVM pVM)
    19941989{
    19951990#ifdef USE_REM_STUBS
     
    19971992#else
    19981993    Assert(VALID_PTR(pfnREMR3State));
    1999     return pfnREMR3State(pVM, fFlushTBs);
     1994    return pfnREMR3State(pVM);
    20001995#endif
    20011996}
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