summaryrefslogtreecommitdiff
path: root/hw/xwin
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2019-02-21 15:22:57 -0800
committerAdam Jackson <ajax@nwnk.net>2019-02-25 15:48:03 +0000
commit4ad21c3247d98ac6c5ad71fa36be60ed04f7c92c (patch)
tree972bb8527a664a277416818c05dea586273c2075 /hw/xwin
parent7533fa9bd5a4a0f7743d553be186514d684308c8 (diff)
Add ddxInputThread call from os layer into ddx layer
Allows ddx's to run additional code as necessary to set up the input thread. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'hw/xwin')
-rw-r--r--hw/xwin/InitOutput.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/hw/xwin/InitOutput.c b/hw/xwin/InitOutput.c
index 98385a8c4..796b567d1 100644
--- a/hw/xwin/InitOutput.c
+++ b/hw/xwin/InitOutput.c
@@ -151,6 +151,15 @@ ddxBeforeReset(void)
}
#endif
+#if INPUTTHREAD
+/** This function is called in Xserver/os/inputthread.c when starting
+ the input thread. */
+void
+ddxInputThreadInit(void)
+{
+}
+#endif
+
int
main(int argc, char *argv[], char *envp[])
{