Changeset 21818 in vbox for trunk/src/VBox/Main/idl
- Timestamp:
- Jul 27, 2009 3:52:16 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r21809 r21818 492 492 <const name="PoweredOff" value="1"> 493 493 <desc> 494 The machine is not running. 494 The machine is not running and has no saved execution state; it has 495 either never been started or been shut down successfully. 495 496 </desc> 496 497 </const> … … 498 499 <desc> 499 500 The machine is not currently running, but the execution state of the machine 500 has been saved to an external file when it was running. 501 has been saved to an external file when it was running, from where 502 it can be resumed. 501 503 </desc> 502 504 </const> 503 505 <const name="Aborted" value="3"> 504 506 <desc> 505 The process running the machine has terminated abnormally. 507 The process running the machine has terminated abnormally. This may 508 indicate a crash of the VM process in host execution context, or 509 the VM process has been terminated externally. 506 510 </desc> 507 511 </const> … … 529 533 <desc> 530 534 Execution of the machine has reached the "Guru Meditation" 531 condition. 535 condition. This indicates a severe error in the hypervisor itself. 532 536 </desc> 533 537 </const> … … 546 550 <const name="Saving" value="9"> 547 551 <desc> 548 Machine is saving its execution state to a file or an online552 Machine is saving its execution state to a file, or an online 549 553 snapshot of the machine is being taken. 550 554 </desc> … … 6491 6495 <method name="takeSnapshot"> 6492 6496 <desc> 6493 Saves the current execution state and all settings of the 6494 machine and creates differencing images for all 6495 normal (non-independent) hard disks. 6496 6497 This method can be called for a PoweredOff, Saved, Running or 6497 Saves the current execution state 6498 and all settings of the machine and creates differencing images 6499 for all normal (non-independent) hard disks. 6500 See <link to="ISnapshot" /> for an introduction to snapshots. 6501 6502 This method can be called for a PoweredOff, Saved (see 6503 <link to="#saveState"/>), Running or 6498 6504 Paused virtual machine. When the machine is PoweredOff, an 6499 offline <link to="ISnapshot">snapshot</link> is created, 6500 in all other cases -- an online snapshot. 6505 offline snapshot is created, an online snapshot otherwise. 6501 6506 6502 6507 The taken snapshot is always based on the … … 6509 6514 </note> 6510 6515 6511 <see>ISnapshot, <link to="#saveState"/></see>6512 6516 <result name="VBOX_E_INVALID_VM_STATE"> 6513 6517 Virtual machine currently changing state. … … 6527 6531 <method name="discardSnapshot"> 6528 6532 <desc> 6529 6530 Starts discarding the specified snapshot. The execution state 6533 Starts discarding the specified snapshot asynchronously. 6534 See <link to="ISnapshot" /> for an introduction to snapshots. 6535 6536 The execution state 6531 6537 and settings of the associated machine stored in the snapshot 6532 6538 will be deleted. The contents of all differencing hard disks of 6533 6539 this snapshot will be merged with the contents of their 6534 dependent child hard disks to keep the ,disks valid (in other6540 dependent child hard disks to keep the disks valid (in other 6535 6541 words, all changes represented by hard disks being discarded 6536 6542 will be propagated to their child hard disks). After that, this … … 6621 6627 <method name="discardCurrentState"> 6622 6628 <desc> 6623 This operation is similar to <link to="IConsole::discardSnapshot"/> but 6624 affects the current machine state. This means that the state stored in 6625 the current snapshot will become a new current state, and all current 6626 settings of the machine and changes stored in differencing hard disks 6629 Starts resetting the machine's current state to the state contained 6630 in the current snapshot, asynchronously. All current settings of the 6631 machine will be reset and changes stored in differencing hard disks 6627 6632 will be lost. 6633 See <link to="ISnapshot" /> for an introduction to snapshots. 6628 6634 6629 6635 After this operation is successfully completed, new empty differencing
Note:
See TracChangeset
for help on using the changeset viewer.