diff options
author | Daniel Stone <daniel@fooishbar.org> | 2007-10-27 21:33:52 +0300 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2007-10-28 15:50:18 +0200 |
commit | 493b83bd097372ae0023da9919da83af39e3fc1c (patch) | |
tree | 9a1b8cd3f8da06a4017d7aa53fa71f2a5a943ac6 | |
parent | a3d48de5f2b7eacf3193c60f0fb461912201210b (diff) |
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.
-rw-r--r-- | hw/xfree86/os-support/shared/sigio.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/hw/xfree86/os-support/shared/sigio.c b/hw/xfree86/os-support/shared/sigio.c index f6c15c28f..c97f50302 100644 --- a/hw/xfree86/os-support/shared/sigio.c +++ b/hw/xfree86/os-support/shared/sigio.c @@ -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) { |