- Timestamp:
- Nov 6, 2023 3:49:29 PM (16 months ago)
- svn:sync-xref-src-repo-rev:
- 159976
- Location:
- trunk/src/VBox/Additions/x11/VBoxClient
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/vboxwl.cpp
r101878 r101880 30 30 31 31 #include <iprt/initterm.h> 32 #include <iprt/err .h>32 #include <iprt/errcore.h> 33 33 #include <iprt/message.h> 34 34 #include <iprt/getopt.h> -
trunk/src/VBox/Additions/x11/VBoxClient/wayland-helper-ipc.h
r101878 r101880 422 422 RTDECL(int) vbcl_wayland_hlp_gtk_ipc_srv_name(char *szBuf, size_t cbBuf); 423 423 424 #endif /* GA_INCLUDED_SRC_x11_VBoxClient_wayland_helper_ipc_h */425 424 #endif /* !GA_INCLUDED_SRC_x11_VBoxClient_wayland_helper_ipc_h */ 425 -
trunk/src/VBox/Additions/x11/VBoxClient/wayland-helper.cpp
r101878 r101880 49 49 * Each time when either host (via VBoxClient) or Wayland client 50 50 * initiates a new data transfer (such as clipboard sharing or drag-n-drop 51 * operation) a new session should be started. Due to current 52 * implementation, 51 * operation) a new session should be started. Due to current implementation, 53 52 * no more than one session can run in the same time. Therefore, before 54 53 * starting new session, previous one needs to be ended. 55 54 56 55 * When either VBoxClient or Wayland thread needs to access session data, 57 * it need to join session at first. Multiple threads can join the same 56 * it need to join session at first. Multiple threads can join the same 58 57 * session in parallel. 59 58 60 * When sequence of operations which were required to transfer data to 59 * When sequence of operations which were required to transfer data to 61 60 * either side is complete, session should be ended. 62 61 * … … 100 99 /** 101 100 * Try atomically enter session state within time interval. 102 *103 *104 101 * 105 102 * @returns IPRT status code.
Note:
See TracChangeset
for help on using the changeset viewer.