diff options
author | Christopher Faylor <me@cgf.cx> | 2005-12-22 05:57:54 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-12-22 05:57:54 +0000 |
commit | de935f6d9feb4a671580ad0f685a810749e8ab02 (patch) | |
tree | c9df2c01bc228f9f6f5e486efe559a9f8ef56905 /winsup/cygwin/exceptions.cc | |
parent | 718dee922f2a168f752a7bceb93f85d114aaceb7 (diff) | |
download | newlib-de935f6d9feb4a671580ad0f685a810749e8ab02.zip newlib-de935f6d9feb4a671580ad0f685a810749e8ab02.tar.gz newlib-de935f6d9feb4a671580ad0f685a810749e8ab02.tar.bz2 |
whitespace cleanup to force snapshot.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r-- | winsup/cygwin/exceptions.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc index 46c742b..152210f 100644 --- a/winsup/cygwin/exceptions.cc +++ b/winsup/cygwin/exceptions.cc @@ -927,8 +927,8 @@ ctrl_c_handler (DWORD type) int sig = SIGINT; /* If intr and quit are both mapped to ^C, send SIGQUIT on ^BREAK */ if (type == CTRL_BREAK_EVENT - && t->ti.c_cc[VINTR] == 3 && t->ti.c_cc[VQUIT] == 3) - sig = SIGQUIT; + && t->ti.c_cc[VINTR] == 3 && t->ti.c_cc[VQUIT] == 3) + sig = SIGQUIT; t->last_ctrl_c = GetTickCount (); killsys (-myself->pid, sig); t->last_ctrl_c = GetTickCount (); @@ -1269,12 +1269,12 @@ _cygtls::call_signal_handler () sigfunc (thissig); } else - { + { siginfo_t thissi = infodata; - void (*sigact) (int, siginfo_t *, void *) = (void (*) (int, siginfo_t *, void *)) func; - /* no ucontext_t information provided yet */ - sigact (thissig, &thissi, NULL); - } + void (*sigact) (int, siginfo_t *, void *) = (void (*) (int, siginfo_t *, void *)) func; + /* no ucontext_t information provided yet */ + sigact (thissig, &thissi, NULL); + } incyg++; set_signal_mask (this_oldmask, myself->getsigmask ()); if (this_errno >= 0) |