Changeset 24261 in vbox
- Timestamp:
- Nov 2, 2009 2:57:32 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r24260 r24261 8318 8318 <const name="Created" value="1"> 8319 8319 <desc> 8320 Associated storage exists and accessible. 8320 Associated storage exists and accessible; this gets set if the 8321 accessibility check performed by <link to="IMedium::refreshState" /> 8322 was successful. 8321 8323 </desc> 8322 8324 </const> 8323 8325 <const name="LockedRead" value="2"> 8324 8326 <desc> 8325 Medium is locked for reading, no data modification is possible. 8327 Medium is locked for reading, no data modification is possible. A 8328 medium is typically locked for reading if has a depending differencing 8329 image that receives write operations; this way one base medium 8330 can have multiple child differencing images which can be written to 8331 simultaneously. 8326 8332 </desc> 8327 8333 </const> … … 8329 8335 <desc> 8330 8336 Medium is locked for writing, no concurrent data reading or modification 8331 is possible. 8337 is possible. A medium is typically locked for writing when it receives 8338 write operations from a running virtual machine. If a medium has 8339 differencing images, then only the last ("leaf") differencing image 8340 is locked for writing, whereas its parents are locked for reading only. 8332 8341 </desc> 8333 8342 </const> 8334 8343 <const name="Inaccessible" value="4"> 8335 8344 <desc> 8336 Associated medium storage is not accessible. 8345 Medium accessiblity check (see <link to="IMedium::refreshState" />) has 8346 not yet been performed, or else, associated medium storage is not 8347 accessible. In the first case, <link to="IMedium::lastAccessError"/> 8348 is empty, in the second case, it describes the error that occured. 8337 8349 </desc> 8338 8350 </const> … … 9091 9103 <method name="refreshState"> 9092 9104 <desc> 9093 If the current medium state (see <link to="MediumState"/> 9094 and <link to="#state" /> is one of "Created", "Inaccessible" 9095 or "LockedRead", then this performs an accessibility check on the 9096 medium and sets the value of the <link to="#state"/> attribute 9097 accordingly; that value is also returned for convenience. 9105 If the current medium state (see <link to="MediumState"/>) is one of 9106 "Created", "Inaccessible" or "LockedRead", then this performs an 9107 accessibility check on the medium and sets the value of the <link to="#state"/> 9108 attribute accordingly; that value is also returned for convenience. 9098 9109 9099 9110 For all other state values, this does not perform a refresh but returns
Note:
See TracChangeset
for help on using the changeset viewer.