aboutsummaryrefslogtreecommitdiff
path: root/nx-X11
diff options
context:
space:
mode:
authorUlrich Sibiller <uli42@gmx.de>2021-02-12 22:21:39 +0100
committerUlrich Sibiller <uli42@gmx.de>2021-06-20 20:12:51 +0200
commit65c260edf9a02d71dbc840b867ab64a62fefedc5 (patch)
treefbb2bcc09b59998fa9d62d1d709920a57ea1cc55 /nx-X11
parentd335fc8fb04e1611352842b6f6d68f3fe43d44e9 (diff)
downloadnx-libs-65c260edf9a02d71dbc840b867ab64a62fefedc5.tar.gz
nx-libs-65c260edf9a02d71dbc840b867ab64a62fefedc5.tar.bz2
nx-libs-65c260edf9a02d71dbc840b867ab64a62fefedc5.zip
Clipboard.c: improve debugging output once more
Diffstat (limited to 'nx-X11')
-rw-r--r--nx-X11/programs/Xserver/hw/nxagent/Clipboard.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c b/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c
index b77cb181a..508ae5699 100644
--- a/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c
+++ b/nx-X11/programs/Xserver/hw/nxagent/Clipboard.c
@@ -1565,6 +1565,14 @@ Bool nxagentCollectPropertyEventFromXServer(int resource)
&ulReturnBytesLeft,
&pszReturnData);
+ #ifdef DEBUG
+ fprintf(stderr, "%s: NXGetCollectedProperty: result [%d]\n", __func__, result);
+ fprintf(stderr, "%s: atomReturnType [%ld]\n", __func__, atomReturnType);
+ fprintf(stderr, "%s: resultFormat [%d]\n", __func__, resultFormat);
+ fprintf(stderr, "%s: ulReturnItems [%lu]\n", __func__, ulReturnItems);
+ fprintf(stderr, "%s: ulReturnBytesLeft [%lu]\n", __func__, ulReturnBytesLeft);
+ #endif
+
lastClients[index].resource = -1;
if (result == 0)
@@ -1578,7 +1586,7 @@ Bool nxagentCollectPropertyEventFromXServer(int resource)
else if (resultFormat != 8 && resultFormat != 16 && resultFormat != 32)
{
#ifdef DEBUG
- fprintf(stderr, "%s: WARNING! Invalid property format.\n", __func__);
+ fprintf(stderr, "%s: WARNING! Invalid property format [%d].\n", __func__, resultFormat);
#endif
endTransfer(index, SELECTION_FAULT);
@@ -1638,7 +1646,7 @@ Bool nxagentCollectPropertyEventFromXServer(int resource)
else
{
#ifdef DEBUG
- fprintf(stderr, "%s: Got property content from remote server. size [%lu] bytes.\n", __func__, (ulReturnItems * resultFormat / 8));
+ fprintf(stderr, "%s: Got property content from remote server. [%lu] items with format [%d] = [%lu] bytes.\n", __func__, ulReturnItems, resultFormat, (ulReturnItems * resultFormat/8));
#endif
if (lastClients[index].target == clientTARGETS)
@@ -2587,6 +2595,10 @@ int nxagentConvertSelection(ClientPtr client, WindowPtr pWin, Atom selection,
if (lastClients[index].clientPtr == client)
{
+ #ifdef DEBUG
+ fprintf(stderr, "%s: same client as previous request\n", __func__);
+ #endif
+
if (GetTimeInMillis() - lastClients[index].reqTime < ACCUM_TIME)
{
/*