* sigproc.cc (sig_dispatch_pending): Remove debugging statement.

(sigproc_init): Wrap a long line.
This commit is contained in:
Christopher Faylor 2010-09-12 19:13:09 +00:00
parent 6c6eb02b33
commit 11fef78748
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2010-09-12 Christopher Faylor <me+cygwin@cgf.cx>
* sigproc.cc (sig_dispatch_pending): Remove debugging statement.
(sigproc_init): Wrap a long line.
2010-09-12 Christopher Faylor <me+cygwin@cgf.cx> 2010-09-12 Christopher Faylor <me+cygwin@cgf.cx>
* cygthread.h (cygthread::cygthread): Reorganize slightly. * cygthread.h (cygthread::cygthread): Reorganize slightly.

View File

@ -433,9 +433,6 @@ sig_dispatch_pending (bool fast)
return; return;
} }
#ifdef DEBUGGING
sigproc_printf ("flushing");
#endif
sig_send (myself, fast ? __SIGFLUSHFAST : __SIGFLUSH); sig_send (myself, fast ? __SIGFLUSHFAST : __SIGFLUSH);
} }
@ -457,7 +454,9 @@ sigproc_init ()
{ {
char char_sa_buf[1024]; char char_sa_buf[1024];
PSECURITY_ATTRIBUTES sa_buf = sec_user_nih ((PSECURITY_ATTRIBUTES) char_sa_buf, cygheap->user.sid()); PSECURITY_ATTRIBUTES sa_buf = sec_user_nih ((PSECURITY_ATTRIBUTES) char_sa_buf, cygheap->user.sid());
for (int i = 5; i > 0 && !CreatePipe (&my_readsig, &my_sendsig, sa_buf, 0); i--) for (int i = 5;
i > 0 && !CreatePipe (&my_readsig, &my_sendsig, sa_buf, 0);
i--)
if (i == 1) if (i == 1)
api_fatal ("couldn't create signal pipe, %E"); api_fatal ("couldn't create signal pipe, %E");
ProtectHandle (my_readsig); ProtectHandle (my_readsig);