Changeset 28369 in vbox
- Timestamp:
- Apr 15, 2010 2:52:36 PM (15 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/GuestImpl.cpp
r28358 r28369 820 820 using namespace guestControl; 821 821 822 CheckComArgOutPointerValid(aBuffer); 822 NOREF(aPID); 823 NOREF(aFlags); 824 NOREF(aBuffer); 825 826 return S_OK; 823 827 #endif 824 828 } -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r28358 r28369 8437 8437 </attribute> 8438 8438 8439 <attribute name="statisticsUpdateInterval" type="unsigned long"> 8440 <desc>Interval to update guest statistics in seconds.</desc> 8441 </attribute> 8442 8443 <method name="internalGetStatistics"> 8439 <attribute name="statisticsUpdateInterval" type="unsigned long"> 8440 <desc>Interval to update guest statistics in seconds.</desc> 8441 </attribute> 8442 8443 <method name="internalGetStatistics"> 8444 8444 <desc> 8445 8445 Internal method; do not use as it might change at any time 8446 </desc> 8447 <param name="cpuUser" type="unsigned long" dir="out"> 8448 <desc>Percentage of processor time spent in user mode as seen by the guest</desc> 8449 </param> 8450 <param name="cpuKernel" type="unsigned long" dir="out"> 8451 <desc>Percentage of processor time spent in kernel mode as seen by the guest</desc> 8452 </param> 8453 <param name="cpuIdle" type="unsigned long" dir="out"> 8454 <desc>Percentage of processor time spent idling as seen by the guest</desc> 8455 </param> 8456 <param name="memTotal" type="unsigned long" dir="out"> 8457 <desc>Total amount of physical guest RAM</desc> 8458 </param> 8459 <param name="memFree" type="unsigned long" dir="out"> 8460 <desc>Free amount of physical guest RAM</desc> 8461 </param> 8462 <param name="memBalloon" type="unsigned long" dir="out"> 8463 <desc>Amount of ballooned physical guest RAM</desc> 8464 </param> 8465 <param name="memCache" type="unsigned long" dir="out"> 8466 <desc>Total amount of guest (disk) cache memory</desc> 8467 </param> 8468 <param name="pagedTotal" type="unsigned long" dir="out"> 8469 <desc>Total amount of space in the page file</desc> 8470 </param> 8471 <param name="memAllocTotal" type="unsigned long" dir="out"> 8472 <desc>Total amount of memory allocated by the hypervisor</desc> 8473 </param> 8474 <param name="memFreeTotal" type="unsigned long" dir="out"> 8475 <desc>Total amount of free memory available in the hypervisor</desc> 8476 </param> 8477 <param name="memBalloonTotal" type="unsigned long" dir="out"> 8478 <desc>Total amount of memory ballooned by the hypervisor</desc> 8479 </param> 8480 </method> 8446 </desc> 8447 <param name="cpuUser" type="unsigned long" dir="out"> 8448 <desc>Percentage of processor time spent in user mode as seen by the guest</desc> 8449 </param> 8450 <param name="cpuKernel" type="unsigned long" dir="out"> 8451 <desc>Percentage of processor time spent in kernel mode as seen by the guest</desc> 8452 </param> 8453 <param name="cpuIdle" type="unsigned long" dir="out"> 8454 <desc>Percentage of processor time spent idling as seen by the guest</desc> 8455 </param> 8456 <param name="memTotal" type="unsigned long" dir="out"> 8457 <desc>Total amount of physical guest RAM</desc> 8458 </param> 8459 <param name="memFree" type="unsigned long" dir="out"> 8460 <desc>Free amount of physical guest RAM</desc> 8461 </param> 8462 <param name="memBalloon" type="unsigned long" dir="out"> 8463 <desc>Amount of ballooned physical guest RAM</desc> 8464 </param> 8465 <param name="memCache" type="unsigned long" dir="out"> 8466 <desc>Total amount of guest (disk) cache memory</desc> 8467 </param> 8468 <param name="pagedTotal" type="unsigned long" dir="out"> 8469 <desc>Total amount of space in the page file</desc> 8470 </param> 8471 <param name="memAllocTotal" type="unsigned long" dir="out"> 8472 <desc>Total amount of memory allocated by the hypervisor</desc> 8473 </param> 8474 <param name="memFreeTotal" type="unsigned long" dir="out"> 8475 <desc>Total amount of free memory available in the hypervisor</desc> 8476 </param> 8477 <param name="memBalloonTotal" type="unsigned long" dir="out"> 8478 <desc>Total amount of memory ballooned by the hypervisor</desc> 8479 </param> 8480 </method> 8481 8481 8482 8482 <method name="setCredentials"> … … 8539 8539 <param name="environment" type="wstring" safearray="yes" dir="in"> 8540 8540 <desc> 8541 Environment variables that can be set while the command is being 8541 Environment variables that can be set while the command is being 8542 8542 executed, in form of "NAME=VALUE"; one pair per entry. To unset a 8543 8543 variable just set its name ("NAME") without a value. … … 8575 8575 <param name="timeoutMS" type="unsigned long" dir="in"> 8576 8576 <desc> 8577 The maximum timeout value (in msec) to wait for finished program 8577 The maximum timeout value (in msec) to wait for finished program 8578 8578 execution. Pass 0 for an infinite timeout. 8579 8579 </desc> … … 8582 8582 <desc> 8583 8583 The PID (process ID) of the started command for later reference. 8584 </desc> 8585 </param> 8584 </desc> 8585 </param> 8586 8586 <param name="progress" type="IProgress" dir="return"> 8587 8587 <desc>Progress object to track the operation completion.</desc> … … 8593 8593 Retrieves output of a formerly started process. 8594 8594 8595 8595 <result name="VBOX_E_IPRT_ERROR"> 8596 8596 Could not retrieve output. 8597 8597 </result> … … 8605 8605 <param name="flags" type="unsigned long" dir="in"> 8606 8606 <desc> 8607 8608 </desc> 8609 </param> 8607 Flags describing which output to retrieve. 8608 </desc> 8609 </param> 8610 8610 <param name="buffer" type="wstring" dir="out"> 8611 8611 <desc> 8612 8612 Buffer for retrieving the actual output. 8613 8613 </desc> 8614 </param> 8614 </param> 8615 8615 </method> 8616 8616
Note:
See TracChangeset
for help on using the changeset viewer.