diff options
author | Christopher Faylor <me@cgf.cx> | 2012-12-31 19:07:03 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2012-12-31 19:07:03 +0000 |
commit | d6aec4e02509549e1b26ffcd8d210a83f0f77754 (patch) | |
tree | 2af3a613442c846f3a29c416ffd0ccf6669c3ece | |
parent | f6187d46b117f281040e2b9a9f3bdabe60954156 (diff) | |
download | cygnal-d6aec4e02509549e1b26ffcd8d210a83f0f77754.tar.gz cygnal-d6aec4e02509549e1b26ffcd8d210a83f0f77754.tar.bz2 cygnal-d6aec4e02509549e1b26ffcd8d210a83f0f77754.zip |
* sigproc.cc (wait_sig): Remove spurious extern.
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/sigproc.cc | 1 |
2 files changed, 4 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 89eb529cd..562c48c41 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,5 +1,9 @@ 2012-12-31 Christopher Faylor <me.cygwin2012@cgf.cx> + * sigproc.cc (wait_sig): Remove spurious extern. + +2012-12-31 Christopher Faylor <me.cygwin2012@cgf.cx> + * dtable.cc (dtable::dup3): Fix bounds checking for valid newfd. * syscalls.cc (dup2): Ditto. * winsup.h (events_terminate): Delete obsolete function declaration. diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc index 32bc9a8f2..eeeb4dc9b 100644 --- a/winsup/cygwin/sigproc.cc +++ b/winsup/cygwin/sigproc.cc @@ -1376,7 +1376,6 @@ pending_signals::next () static void WINAPI wait_sig (VOID *) { - extern int signal_exit_code; _sig_tls = &_my_tls; sig_hold = CreateEvent (&sec_none_nih, FALSE, FALSE, NULL); |