VirtualBox

Changeset 4206 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Aug 17, 2007 8:11:02 PM (17 years ago)
Author:
vboxsync
Message:

more options (forgot to commit it).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/testcase/tstAnimate.cpp

    r4197 r4206  
    2424#include <VBox/cpum.h>
    2525#include <VBox/cfgm.h>
     26#include <VBox/em.h>
    2627#include <VBox/pgm.h>
    2728#include <VBox/rem.h>
     
    599600             "              [-s <script file>]\n"
    600601             "              [-m <memory size>]\n"
     602             "              [-w <warp drive percent>]\n"
    601603             "              [-p]\n"
    602604             "\n"
     
    622624
    623625    bool        fPowerOn = false;
     626    uint32_t    u32WarpDrive = 100; /* % */
    624627    uint64_t    cbMem = ~0ULL;
    625628    const char *pszSavedState = NULL;
     
    649652                case 'c':
    650653                case 'm':
     654                case 'w':
    651655                case 'z':
    652656                    if (i + 1 < argc)
     
    713717                    break;
    714718
     719                case 'w':
     720                {
     721                    int rc = RTStrToUInt32Ex(argv[++i], NULL, 0, &u32WarpDrive);
     722                    if (VBOX_FAILURE(rc))
     723                    {
     724                        RTPrintf("tstAnimate: Syntax error: Invalid number given to -w.\n");
     725                        return 1;
     726                    }
     727                    break;
     728                }
     729
    715730                case 'h':
    716731                case 'H':
     
    835850            {
    836851                if (fPowerOn)
    837                 {
     852                {   
     853                    /*
     854                     * Adjust warpspeed?
     855                     */
     856                    if (u32WarpDrive != 100)
     857                    {
     858                        rc = TMVirtualSetWarpDrive(pVM, u32WarpDrive);
     859                        if (VBOX_FAILURE(rc))
     860                            RTPrintf("warning: TMVirtualSetWarpDrive(,%u) -> %Vrc\n", u32WarpDrive, rc);
     861                    }
     862
    838863                    /*
    839864                     * Start the thing with single stepping and stuff enabled.
     865                     * (Try make sure we don't execute anything in raw mode.)
    840866                     */
    841867                    RTPrintf("info: powering on the VM...\n");
     
    844870                    if (VBOX_SUCCESS(rc))
    845871                    {
    846                         DBGFR3InfoLog(pVM, "cpumguest", "verbose");
     872                        rc = VMR3ReqCall(pVM, &pReq1, RT_INDEFINITE_WAIT, (PFNRT)EMR3RawSetMode, 2, pVM, EMRAW_NONE);
     873                        AssertReleaseRC(rc);
     874                        VMR3ReqFree(pReq1);
     875
     876                        DBGFR3Info(pVM, "cpumguest", "verbose", NULL);
    847877                        if (fPowerOn)
    848878                            rc = VMR3PowerOn(pVM);
     
    866896                     */
    867897                    RTPrintf("info: entering debugger...\n");
    868                     DBGFR3InfoLog(pVM, "cpumguest", "verbose");
     898                    DBGFR3Info(pVM, "cpumguest", "verbose", NULL);
    869899                    signal(SIGINT, SigInterrupt);
    870900                    while (!g_fSignaled)
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