* sigproc.h (sigframe): Don't set frame info unless tid matches this thread id.
This commit is contained in:
parent
12e659efa8
commit
77303e2d83
|
@ -1,3 +1,8 @@
|
||||||
|
Thu May 18 01:04:02 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
|
* sigproc.h (sigframe): Don't set frame info unless tid matches this
|
||||||
|
thread id.
|
||||||
|
|
||||||
Wed May 17 23:13:32 2000 Christopher Faylor <cgf@cygnus.com>
|
Wed May 17 23:13:32 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
* dcrt0.cc (dll_crt0_1): Initialize mainthread stuff here before
|
* dcrt0.cc (dll_crt0_1): Initialize mainthread stuff here before
|
||||||
|
|
|
@ -65,7 +65,7 @@ public:
|
||||||
sigframe () {st = NULL;}
|
sigframe () {st = NULL;}
|
||||||
sigframe (sigthread &t, int up = 1)
|
sigframe (sigthread &t, int up = 1)
|
||||||
{
|
{
|
||||||
if (!t.frame || t.id == GetCurrentThreadId ())
|
if (!t.frame && t.id == GetCurrentThreadId ())
|
||||||
set (t, up);
|
set (t, up);
|
||||||
else
|
else
|
||||||
st = NULL;
|
st = NULL;
|
||||||
|
|
Loading…
Reference in New Issue