VirtualBox

Ignore:
Timestamp:
Oct 12, 2007 12:15:51 AM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
25220
Message:

Added a -reset option to the vmstatistics command.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp

    r5204 r5253  
    599599    if (u64Cmd & USAGE_VM_STATISTICS)
    600600    {
    601         RTPrintf("VBoxManage vmstatistics     <vmname>|<uuid>\n"
     601        RTPrintf("VBoxManage vmstatistics     <vmname>|<uuid> [-reset]\n"
    602602                 "                            [-pattern <pattern>] [-descriptions]\n"
    603603                 "\n");
     
    70287028        return 1;
    70297029
    7030     /*  */
     7030    /* parse arguments. */
     7031    bool fReset = false;
    70317032    bool fWithDescriptions = false;
    70327033    const char *pszPattern = NULL; /* all */
     
    70447045            fWithDescriptions = true;
    70457046        /* add: -file <filename> and -formatted */
     7047        else if (!strcmp(argv[i], "-reset"))
     7048            fReset = true;
    70467049        else
    70477050            return errorSyntax(USAGE_VM_STATISTICS, "Unknown option '%s'", argv[i]);
    70487051    }
     7052    if (fReset && fWithDescriptions)
     7053        return errorSyntax(USAGE_VM_STATISTICS, "The -reset and -descriptions options does not mix");
     7054
    70497055
    70507056    /* open an existing session for the VM. */
     
    70627068            if (SUCCEEDED(rc))
    70637069            {
    7064                 if (1/*fDumpStats*/)
     7070                if (fReset)
     7071                    CHECK_ERROR(debugger, ResetStats(Bstr(pszPattern).raw()));
     7072                else
    70657073                {
    70667074                    Bstr stats;
     
    70687076                    if (SUCCEEDED(rc))
    70697077                    {
     7078                        /* if (fFormatted)
     7079                         { big mess }
     7080                         else
     7081                         */
    70707082                        RTPrintf("%ls\n", stats.raw());
    70717083                    }
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