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:
Diffstat (limited to 'winsup/cygwin/sigproc.h')
-rw-r--r--winsup/cygwin/sigproc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/sigproc.h b/winsup/cygwin/sigproc.h
index b852d278d..aef272227 100644
--- a/winsup/cygwin/sigproc.h
+++ b/winsup/cygwin/sigproc.h
@@ -49,7 +49,7 @@ private:
sigthread *st;
public:
- void set (sigthread &t, DWORD ebp = (DWORD) __builtin_frame_address (0))
+ void set (sigthread &t, DWORD ebp)
{
t.lock->acquire ();
st = &t;
@@ -58,10 +58,10 @@ public:
}
sigframe () {st = NULL;}
- sigframe (sigthread &t, int up = 0)
+ sigframe (sigthread &t, DWORD ebp = (DWORD) __builtin_frame_address (0))
{
if (!t.frame && t.id == GetCurrentThreadId ())
- set (t, up);
+ set (t, ebp);
else
st = NULL;
}