Changeset 5253 in vbox for trunk/src/VBox/Frontends/VBoxManage
- Timestamp:
- Oct 12, 2007 12:15:51 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 25220
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r5204 r5253 599 599 if (u64Cmd & USAGE_VM_STATISTICS) 600 600 { 601 RTPrintf("VBoxManage vmstatistics <vmname>|<uuid> \n"601 RTPrintf("VBoxManage vmstatistics <vmname>|<uuid> [-reset]\n" 602 602 " [-pattern <pattern>] [-descriptions]\n" 603 603 "\n"); … … 7028 7028 return 1; 7029 7029 7030 /* */ 7030 /* parse arguments. */ 7031 bool fReset = false; 7031 7032 bool fWithDescriptions = false; 7032 7033 const char *pszPattern = NULL; /* all */ … … 7044 7045 fWithDescriptions = true; 7045 7046 /* add: -file <filename> and -formatted */ 7047 else if (!strcmp(argv[i], "-reset")) 7048 fReset = true; 7046 7049 else 7047 7050 return errorSyntax(USAGE_VM_STATISTICS, "Unknown option '%s'", argv[i]); 7048 7051 } 7052 if (fReset && fWithDescriptions) 7053 return errorSyntax(USAGE_VM_STATISTICS, "The -reset and -descriptions options does not mix"); 7054 7049 7055 7050 7056 /* open an existing session for the VM. */ … … 7062 7068 if (SUCCEEDED(rc)) 7063 7069 { 7064 if (1/*fDumpStats*/) 7070 if (fReset) 7071 CHECK_ERROR(debugger, ResetStats(Bstr(pszPattern).raw())); 7072 else 7065 7073 { 7066 7074 Bstr stats; … … 7068 7076 if (SUCCEEDED(rc)) 7069 7077 { 7078 /* if (fFormatted) 7079 { big mess } 7080 else 7081 */ 7070 7082 RTPrintf("%ls\n", stats.raw()); 7071 7083 }
Note:
See TracChangeset
for help on using the changeset viewer.