* dcrt0.cc (child_info_fork::alloc_stack): Don't subtract 4096 from stack
pointer since getstack() already does that.
This commit is contained in:
parent
ac0937807d
commit
9a52d79f10
|
@ -1,3 +1,8 @@
|
||||||
|
2013-06-18 Christopher Faylor <me.cygwin2013@cgf.cx>
|
||||||
|
|
||||||
|
* dcrt0.cc (child_info_fork::alloc_stack): Don't subtract 4096 from
|
||||||
|
stack pointer since getstack() already does that.
|
||||||
|
|
||||||
2013-06-18 Corinna Vinschen <corinna@vinschen.de>
|
2013-06-18 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* gmon.c: Drop gratuitous inclusion of strings.h. Remove __MINGW32__
|
* gmon.c: Drop gratuitous inclusion of strings.h. Remove __MINGW32__
|
||||||
|
|
|
@ -481,7 +481,7 @@ child_info_fork::alloc_stack ()
|
||||||
alloc_stack_hard_way (stackp);
|
alloc_stack_hard_way (stackp);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
char *st = (char *) stacktop - 4096;
|
char *st = (char *) stacktop;
|
||||||
while (_tlstop >= st)
|
while (_tlstop >= st)
|
||||||
stackp = getstack (stackp);
|
stackp = getstack (stackp);
|
||||||
stackaddr = 0;
|
stackaddr = 0;
|
||||||
|
|
Loading…
Reference in New Issue