aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/sigproc.h
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-04-02 00:18:29 +0000
committerChristopher Faylor <me@cgf.cx>2001-04-02 00:18:29 +0000
commit1ba3935dfb61f418d81305d677475dbadfbdde3f (patch)
tree0a005fb41ff2dc7182fb8ee635b06adf83d991eb /winsup/cygwin/sigproc.h
parent0ef785e4eef1757b27f34192331031fa68021f90 (diff)
downloadnewlib-1ba3935dfb61f418d81305d677475dbadfbdde3f.zip
newlib-1ba3935dfb61f418d81305d677475dbadfbdde3f.tar.gz
newlib-1ba3935dfb61f418d81305d677475dbadfbdde3f.tar.bz2
* exceptions.cc (sigframe::call_signal_handler): Return value of
call_signal_handler_now. * sigproc.h (sigframe): Use constructor. * syscalls.cc (_read): Correct errno test prior to calling signal handler.
Diffstat (limited to 'winsup/cygwin/sigproc.h')
-rw-r--r--winsup/cygwin/sigproc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/sigproc.h b/winsup/cygwin/sigproc.h
index 1543aa1..2951703 100644
--- a/winsup/cygwin/sigproc.h
+++ b/winsup/cygwin/sigproc.h
@@ -71,7 +71,7 @@ public:
t.get_winapi_lock ();
}
- sigframe () {st = NULL;}
+ sigframe (): st (NULL) {}
sigframe (sigthread &t, DWORD ebp = (DWORD) __builtin_frame_address (0))
{
if (!t.frame && t.id == GetCurrentThreadId ())