XFree86: Remove ridiculous SIGIO debugging

YOU PRESSED A KEY
AND AGAIN
YOU RELEASED A KEY
AND AGAIN
YOU PRESSED A KEY
AND AGAIN

... not so much.
This commit is contained in:
Daniel Stone 2007-10-27 21:33:52 +03:00
parent a3d48de5f2
commit 493b83bd09

View File

@ -243,9 +243,6 @@ xf86BlockSIGIO (void)
sigaddset (&set, SIGIO);
sigprocmask (SIG_BLOCK, &set, &old);
ret = sigismember (&old, SIGIO);
#ifdef DEBUG
ErrorF("%i = xf86BlockSIGIO()\n",ret);
#endif
return ret;
}
@ -253,9 +250,6 @@ _X_EXPORT void
xf86UnblockSIGIO (int wasset)
{
sigset_t set;
#ifdef DEBUG
ErrorF("xf86UnblockSIGIO(%i)\n",wasset);
#endif
if (!wasset)
{