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