Changeset 25939 in vbox for trunk/include/VBox
- Timestamp:
- Jan 20, 2010 3:24:07 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56779
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/com/AutoLock.h
r25930 r25939 71 71 LOCKCLASS_NONE = 0, 72 72 LOCKCLASS_VIRTUALBOXOBJECT = 1, // highest order: VirtualBox object lock 73 LOCKCLASS_USBPROXYSERVICE = 2, // USB proxy service object lock 74 LOCKCLASS_HOSTOBJECT = 3, // Host object lock 75 LOCKCLASS_LISTOFMACHINES = 4, // list of machines in VirtualBox object 76 LOCKCLASS_MACHINEOBJECT = 5, // Machine object lock 77 LOCKCLASS_SNAPSHOTOBJECT = 6, // snapshot object locks 73 LOCKCLASS_HOSTOBJECT = 2, // Host object lock 74 LOCKCLASS_LISTOFMACHINES = 3, // list of machines in VirtualBox object 75 LOCKCLASS_MACHINEOBJECT = 4, // Machine object lock 76 LOCKCLASS_SNAPSHOTOBJECT = 5, // snapshot object locks 78 77 // (the snapshots tree, including the child pointers in Snapshot, 79 78 // is protected by the normal Machine object lock) 80 LOCKCLASS_LISTOFMEDIA = 7, // list of media (hard disks, DVDs, floppies) in VirtualBox object81 LOCKCLASS_LISTOFOTHEROBJECTS = 8, // any other list of objects82 LOCKCLASS_OTHEROBJECT = 9, // any regular object member variable lock83 LOCKCLASS_USBLIST = 10, // temporary hack to avoid having to clean up the USB filters79 LOCKCLASS_LISTOFMEDIA = 6, // list of media (hard disks, DVDs, floppies) in VirtualBox object 80 LOCKCLASS_LISTOFOTHEROBJECTS = 7, // any other list of objects 81 LOCKCLASS_OTHEROBJECT = 8, // any regular object member variable lock 82 LOCKCLASS_USBLIST = 9, // temporary hack to avoid having to clean up the USB filters 84 83 // too much @todo r=dj get rid of this! 85 LOCKCLASS_PROGRESSLIST = 1 1, // list of progress objects in VirtualBox; no other object lock84 LOCKCLASS_PROGRESSLIST = 10, // list of progress objects in VirtualBox; no other object lock 86 85 // may be held after this! 87 LOCKCLASS_OBJECTSTATE = 1 2// object state lock (handled by AutoCaller classes)86 LOCKCLASS_OBJECTSTATE = 11 // object state lock (handled by AutoCaller classes) 88 87 }; 89 88
Note:
See TracChangeset
for help on using the changeset viewer.