Changeset 52700 in vbox for trunk/src/VBox/Additions/common/VBoxGuest
- Timestamp:
- Sep 11, 2014 1:39:16 PM (10 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxGuest
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-linux.c
r52681 r52700 706 706 rc = VBoxGuestCreateUserSession(&g_DevExt, &pSession); 707 707 if (RT_SUCCESS(rc)) 708 { 708 709 pFilp->private_data = pSession; 710 if (MINOR(pInode->i_rdev) == g_MiscDeviceUser.minor) 711 pSession->fUserSession = true; 712 } 709 713 710 714 Log(("vboxguestLinuxOpen: g_DevExt=%p pSession=%p rc=%d/%d (pid=%d/%d %s)\n", -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestInternal.h
r51224 r52700 252 252 * at once. */ 253 253 bool volatile fPendingCancelWaitEvents; 254 /** Does this session belong to a root process or a user one? */ 255 bool fUserSession; 254 256 } VBOXGUESTSESSION; 255 257
Note:
See TracChangeset
for help on using the changeset viewer.