Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-04-02 04:18:29 +0400
committerChristopher Faylor <me@cgf.cx>2001-04-02 04:18:29 +0400
commit1ba3935dfb61f418d81305d677475dbadfbdde3f (patch)
tree0a005fb41ff2dc7182fb8ee635b06adf83d991eb /winsup/cygwin/sigproc.h
parent0ef785e4eef1757b27f34192331031fa68021f90 (diff)
* 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 1543aa1cf..295170389 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 ())