Browse Source

Move ddxInputThreadInit() to xvnc.c

This should only be in the ddx parts of an X server, and Input.c is used
by libvnc.so as well and can cause conflicts there.
tags/v1.11.90
Pierre Ossman 2 years ago
parent
commit
12c0f326e1
2 changed files with 9 additions and 9 deletions
  1. 0
    9
      unix/xserver/hw/vnc/Input.c
  2. 9
    0
      unix/xserver/hw/vnc/xvnc.c

+ 0
- 9
unix/xserver/hw/vnc/Input.c View File

@@ -642,12 +642,3 @@ static void vncKeysymKeyboardEvent(KeySym keysym, int down)
*/
mieqProcessInputEvents();
}

#if INPUTTHREAD
/** This function is called in Xserver/os/inputthread.c when starting
the input thread. */
void
ddxInputThreadInit(void)
{
}
#endif

+ 9
- 0
unix/xserver/hw/vnc/xvnc.c View File

@@ -274,6 +274,15 @@ void ddxBeforeReset(void)
}
#endif

#if INPUTTHREAD
/** This function is called in Xserver/os/inputthread.c when starting
the input thread. */
void
ddxInputThreadInit(void)
{
}
#endif

void ddxUseMsg(void)
{
vncPrintBanner();

Loading…
Cancel
Save