Changeset 93423 in vbox for trunk/src/VBox/Additions/x11/VBoxClient
- Timestamp:
- Jan 24, 2022 8:53:37 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 149528
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/display-drm.cpp
r93422 r93423 1 1 /* $Id$ */ 2 2 /** @file 3 * Guest Additions - VMSVGA guest screen resize service. 4 * 3 5 * A user space daemon which communicates with VirtualBox host interface 4 6 * and performs VMSVGA-specific guest screen resize and communicates with … … 871 873 { 872 874 int rc; 873 /** DRM client thread (IpcCLT-%u). */874 875 RTTHREAD hThread = 0; 875 876 RTPROCESS hProcess = 0; … … 983 984 984 985 RTLOCALIPCSERVER hIpcServer; 985 /** DRM IPC server thread (DrmIpcSRV). */986 986 RTTHREAD vbDrmIpcThread; 987 987 int rcDrmIpcThread = 0; 988 988 989 /** DRM resize thread: receive resize data from host and apply it to local DRM stack (DrmResizeThread). */990 989 RTTHREAD drmResizeThread; 991 990 int rcDrmResizeThread = 0; -
trunk/src/VBox/Additions/x11/VBoxClient/display-helper-generic.cpp
r93400 r93423 1 1 /* $Id$ */ 2 2 /** @file 3 * Guest Additions - Generic Desktop Environment helper. 4 * 3 5 * A generic helper for X11 Client which performs Desktop Environment 4 * specific actions .6 * specific actions utilizing libXrandr. 5 7 */ 6 8 -
trunk/src/VBox/Additions/x11/VBoxClient/display-helper-gnome3.cpp
r93380 r93423 1 1 /* $Id$ */ 2 2 /** @file 3 * Guest Additions - Gnome3 Desktop Environment helper. 4 * 3 5 * A helper for X11/Wayland Client which performs Gnome Desktop 4 6 * Environment specific actions. -
trunk/src/VBox/Additions/x11/VBoxClient/display-helper.h
r93384 r93423 1 1 /* $Id$ */ 2 2 /** @file 3 * 4 * Definitions for Desktop Environment helpers. 3 * Guest Additions - Definitions for Desktop Environment helpers. 5 4 */ 6 5 -
trunk/src/VBox/Additions/x11/VBoxClient/display-ipc.cpp
r93386 r93423 1 1 /* $Id$ */ 2 2 /** @file 3 * Common code for IPC communication between VBoxDRMClient and VBoxClient.3 * Guest Additions - DRM IPC communication core functions. 4 4 */ 5 5 -
trunk/src/VBox/Additions/x11/VBoxClient/display-ipc.h
r93376 r93423 1 1 /* $Id$ */ 2 2 /** @file 3 * Guest Additions - DRM IPC communication core function definitions. 3 4 * 4 5 * Definitions for IPC communication in between VBoxDRMClient and VBoxClient. -
trunk/src/VBox/Additions/x11/VBoxClient/display-svga-session.cpp
r93383 r93423 1 1 /* $Id$ */ 2 2 /** @file 3 * Desktop Environment specific guest screen assistant for 4 * VMSVGA graphics adapter. 3 * Guest Additions - VMSVGA Desktop Environment user session assistant. 5 4 * 6 5 * This service connects to VBoxDRMClient IPC server, listens for
Note:
See TracChangeset
for help on using the changeset viewer.