diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2019-02-21 15:22:57 -0800 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2019-02-25 15:48:03 +0000 |
commit | 4ad21c3247d98ac6c5ad71fa36be60ed04f7c92c (patch) | |
tree | 972bb8527a664a277416818c05dea586273c2075 /hw/dmx | |
parent | 7533fa9bd5a4a0f7743d553be186514d684308c8 (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/dmx')
-rw-r--r-- | hw/dmx/dmxinit.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hw/dmx/dmxinit.c b/hw/dmx/dmxinit.c index 4fef30273..f80e58666 100644 --- a/hw/dmx/dmxinit.c +++ b/hw/dmx/dmxinit.c @@ -830,6 +830,15 @@ ddxBeforeReset(void) } #endif +#if INPUTTHREAD +/** This function is called in Xserver/os/inputthread.c when starting + the input thread. */ +void +ddxInputThreadInit(void) +{ +} +#endif + /** This function is called in Xserver/os/osinit.c from \a OsInit(). */ void OsVendorInit(void) |