VirtualBox

Changeset 13813 in vbox for trunk/include


Ignore:
Timestamp:
Nov 4, 2008 9:55:34 PM (16 years ago)
Author:
vboxsync
Message:

#1865: Final VMM cleanups.

Location:
trunk/include
Files:
2 edited

Legend:

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

    r13778 r13813  
    129129VMMR3DECL(void)     VMMR3Relocate(PVM pVM, RTGCINTPTR offDelta);
    130130VMMR3DECL(int)      VMMR3UpdateLoggers(PVM pVM);
    131 VMMR3DECL(const char *) VMMR3GetGCAssertMsg1(PVM pVM);
    132 VMMR3DECL(const char *) VMMR3GetGCAssertMsg2(PVM pVM);
     131VMMR3DECL(const char *) VMMR3GetRZAssertMsg1(PVM pVM);
     132VMMR3DECL(const char *) VMMR3GetRZAssertMsg2(PVM pVM);
    133133VMMR3DECL(int)      VMMR3GetImportRC(PVM pVM, const char *pszSymbol, PRTRCPTR pRCPtrValue);
    134134VMMR3DECL(int)      VMMR3SelectSwitcher(PVM pVM, VMMSWITCHER enmSwitcher);
     
    136136VMMR3DECL(int)      VMMR3RawRunGC(PVM pVM);
    137137VMMR3DECL(int)      VMMR3HwAccRunGC(PVM pVM);
    138 VMMR3DECL(int)      VMMR3CallGC(PVM pVM, RTRCPTR GCPtrEntry, unsigned cArgs, ...);
    139 VMMR3DECL(int)      VMMR3CallGCV(PVM pVM, RTRCPTR GCPtrEntry, unsigned cArgs, va_list args);
     138VMMR3DECL(int)      VMMR3CallRC(PVM pVM, RTRCPTR RCPtrEntry, unsigned cArgs, ...);
     139VMMR3DECL(int)      VMMR3CallRCV(PVM pVM, RTRCPTR RCPtrEntry, unsigned cArgs, va_list args);
    140140VMMR3DECL(int)      VMMR3ResumeHyper(PVM pVM);
    141141VMMR3DECL(void)     VMMR3FatalDump(PVM pVM, int rcErr);
  • trunk/include/iprt/initterm.h

    r11841 r13813  
    8282RTR3DECL(int) RTR3InitAndSUPLibWithProgramPath(const char *pszProgramPath);
    8383
    84 /** 
     84/**
    8585 * Initializes the runtime library and possibly also SUPLib too.
    86  * 
     86 *
    8787 * Avoid this interface, it's not considered stable.
    88  * 
     88 *
    8989 * @returns IPRT status code.
    9090 * @param   iVersion        The interface version. Must be 0 atm.
     
    119119#ifdef IN_GC
    120120/**
    121  * Initalizes the guest context runtime library.
     121 * Initializes the raw-mode context runtime library.
    122122 *
    123123 * @returns iprt status code.
     
    125125 * @param   u64ProgramStartNanoTS  The startup timestamp.
    126126 */
    127 RTGCDECL(int) RTGCInit(uint64_t u64ProgramStartNanoTS);
     127RTGCDECL(int) RTRCInit(uint64_t u64ProgramStartNanoTS);
    128128
    129129/**
    130  * Terminates the guest context runtime library.
     130 * Terminates the raw-mode context runtime library.
    131131 */
    132 RTGCDECL(void) RTGCTerm(void);
     132RTGCDECL(void) RTRCTerm(void);
    133133#endif
    134134
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