Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
49d63d92
Commit
49d63d92
authored
May 07, 2020
by
Ulrich Sibiller
Committed by
Mike Gabriel
May 31, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NXevents.c, NXdispatch.c: add some DEBUG statements
parent
2a0d5783
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
NXdispatch.c
nx-X11/programs/Xserver/hw/nxagent/NXdispatch.c
+5
-0
NXevents.c
nx-X11/programs/Xserver/hw/nxagent/NXevents.c
+8
-0
No files found.
nx-X11/programs/Xserver/hw/nxagent/NXdispatch.c
View file @
49d63d92
...
...
@@ -127,6 +127,7 @@ Equipment Corporation.
#include "Handlers.h"
#include "Keyboard.h"
#include "Init.h"
#include "Utils.h"
const
int
nxagentMaxFontNames
=
10000
;
...
...
@@ -990,6 +991,10 @@ ProcFreePixmap(register ClientPtr client)
void
CloseDownClient
(
register
ClientPtr
client
)
{
#ifdef DEBUG
fprintf
(
stderr
,
"%s: [%d]
\n
"
,
__func__
,
client
->
clientState
);
#endif
#ifdef NXAGENT_SERVER
/*
* Need to reset the karma counter and get rid of the pending sync
...
...
nx-X11/programs/Xserver/hw/nxagent/NXevents.c
View file @
49d63d92
...
...
@@ -158,6 +158,10 @@ void
ActivatePointerGrab
(
register
DeviceIntPtr
mouse
,
register
GrabPtr
grab
,
TimeStamp
time
,
Bool
autoGrab
)
{
#ifdef DEBUG
fprintf
(
stderr
,
"%s: called
\n
"
,
__func__
);
#endif
xorg_ActivatePointerGrab
(
mouse
,
grab
,
time
,
autoGrab
);
#ifdef NXAGENT_SERVER
...
...
@@ -217,6 +221,10 @@ ActivatePointerGrab(register DeviceIntPtr mouse, register GrabPtr grab,
void
DeactivatePointerGrab
(
register
DeviceIntPtr
mouse
)
{
#ifdef DEBUG
fprintf
(
stderr
,
"%s: called
\n
"
,
__func__
);
#endif
xorg_DeactivatePointerGrab
(
mouse
);
#ifdef NXAGENT_SERVER
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment