Changeset 54613 in vbox for trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestInternal.h
- Timestamp:
- Mar 3, 2015 11:00:35 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestInternal.h
r54608 r54613 216 216 * Protected by VBOXGUESTDEVEXT::SessionSpinlock, but is unfortunately read 217 217 * without holding the lock in a couple of places. */ 218 uint32_t volatile u32AcquireModeGuestCaps;218 uint32_t volatile fAcquireModeGuestCaps; 219 219 /** Guest capabilities which have been set to "set" mode. This just means 220 220 * that they have been blocked from ever being set to "acquire" mode. */ 221 uint32_t u32SetModeGuestCaps;221 uint32_t fSetModeGuestCaps; 222 222 /** Mask of all capabilities which are currently acquired by some session 223 223 * and as such reported to the host. */ 224 uint32_t u32GuestCapsAcquired;224 uint32_t fAcquiredGuestCaps; 225 225 /** Usage counters for guest capabilities in "set" mode. Indexed by 226 226 * capability bit number, one count per session using a capability. */ … … 283 283 * Protected by VBOXGUESTDEVEXT::SessionSpinlock, but is unfortunately read 284 284 * without holding the lock in a couple of places. */ 285 uint32_t volatile u32AquiredGuestCaps;285 uint32_t volatile fAcquiredGuestCaps; 286 286 /** Guest capabilities in "set" mode for this session. 287 287 * These accumulated for sessions via VBOXGUESTDEVEXT::acGuestCapsSet and
Note:
See TracChangeset
for help on using the changeset viewer.