Changeset 4652 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Sep 10, 2007 9:13:51 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManage.cpp
r4651 r4652 1569 1569 rc = guest->GetStatistic(0, GuestStatisticType_Threads, &statVal); 1570 1570 if (SUCCEEDED(rc)) 1571 RTPrintf("CPU%d: Threads %d %%\n", 0, statVal);1571 RTPrintf("CPU%d: Threads %d\n", 0, statVal); 1572 1572 1573 1573 rc = guest->GetStatistic(0, GuestStatisticType_Processes, &statVal); 1574 1574 if (SUCCEEDED(rc)) 1575 RTPrintf("CPU%d: Processes %d %%\n", 0, statVal);1575 RTPrintf("CPU%d: Processes %d\n", 0, statVal); 1576 1576 1577 1577 rc = guest->GetStatistic(0, GuestStatisticType_Handles, &statVal); 1578 1578 if (SUCCEEDED(rc)) 1579 RTPrintf("CPU%d: Handles %d %%\n", 0, statVal);1579 RTPrintf("CPU%d: Handles %d\n", 0, statVal); 1580 1580 1581 1581 rc = guest->GetStatistic(0, GuestStatisticType_MemoryLoad, &statVal);
Note:
See TracChangeset
for help on using the changeset viewer.