Changeset 32885 in vbox for trunk/src/VBox/Main/ConsoleImpl2.cpp
- Timestamp:
- Oct 4, 2010 12:56:35 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl2.cpp
r32851 r32885 551 551 hrc = pMachine->COMGETTER(CPUCount)(&cCpus); H(); 552 552 553 ULONG ulCpu Priority= 100;554 hrc = pMachine->COMGETTER(CPU Priority)(&ulCpuPriority);H();553 ULONG ulCpuExecutionCap = 100; 554 hrc = pMachine->COMGETTER(CPUExecutionCap)(&ulCpuExecutionCap); H(); 555 555 556 556 Bstr osTypeId; … … 587 587 InsertConfigInteger(pRoot, "RamHoleSize", cbRamHole); 588 588 InsertConfigInteger(pRoot, "NumCPUs", cCpus); 589 InsertConfigInteger(pRoot, "Cpu Priority", ulCpuPriority);589 InsertConfigInteger(pRoot, "CpuExecutionCap", ulCpuExecutionCap); 590 590 InsertConfigInteger(pRoot, "TimerMillies", 10); 591 591 #ifdef VBOX_WITH_RAW_MODE
Note:
See TracChangeset
for help on using the changeset viewer.