Skip to content
Snippets Groups Projects
Commit ea1527a8 authored by Alan Coopersmith's avatar Alan Coopersmith Committed by Adam Jackson
Browse files

Add xf86OSInputThreadInit call from common layer into os-support layer


Allows os backends to run additional code as necessary to set up the
input thread.

Signed-off-by: default avatarAlan Coopersmith <alan.coopersmith@oracle.com>
parent 4ad21c32
1 merge request!126Set IOPL in the input thread on Solaris
......@@ -1347,5 +1347,6 @@ ddxBeforeReset(void)
void
ddxInputThreadInit(void)
{
xf86OSInputThreadInit();
}
#endif
......@@ -661,3 +661,9 @@ xf86UseMsg()
ErrorF("don't detach controlling tty (for debugging only)\n");
return;
}
void
xf86OSInputThreadInit()
{
return;
}
......@@ -87,3 +87,9 @@ xf86CloseConsole()
close(xf86Info.consoleFd);
return;
}
void
xf86OSInputThreadInit()
{
return;
}
......@@ -407,3 +407,9 @@ xf86UseMsg(void)
ErrorF("don't detach controlling tty (for debugging only)\n");
ErrorF("-masterfd <fd> use the specified fd as the DRM master fd (not if setuid/gid)\n");
}
void
xf86OSInputThreadInit()
{
return;
}
......@@ -73,6 +73,12 @@ xf86OSInitVidMem(VidMemInfoPtr pVidMem)
/* I/O Permissions section */
/***************************************************************************/
void
xf86OSInputThreadInit()
{
return;
}
Bool
xf86EnableIO(void)
{
......
......@@ -136,6 +136,7 @@ extern _X_EXPORT int xf86GetSerialModemState(int fd);
extern _X_EXPORT int xf86SerialModemSetBits(int fd, int bits);
extern _X_EXPORT int xf86SerialModemClearBits(int fd, int bits);
extern _X_EXPORT int xf86LoadKernelModule(const char *pathname);
extern _X_EXPORT void xf86OSInputThreadInit(void);
/* AGP GART interface */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment