mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-27 11:43:34 +08:00
Update.
2001-04-04 David Mosberger <davidm@hpl.hp.com> * sysdeps/unix/sysv/linux/ia64/makecontext.c (__makecontext): Fix initialization of stack_end (bug reported by Zheng Gengbin <gzheng@students.uiuc.edu>).
This commit is contained in:
parent
96dd1a812a
commit
8912b9aa26
@ -1,3 +1,9 @@
|
||||
2001-04-04 David Mosberger <davidm@hpl.hp.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/ia64/makecontext.c (__makecontext): Fix
|
||||
initialization of stack_end (bug reported by Zheng Gengbin
|
||||
<gzheng@students.uiuc.edu>).
|
||||
|
||||
2001-04-05 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/i386/fpu/libm-test-ulps: Relax errors for asinl.
|
||||
|
@ -56,7 +56,7 @@ __makecontext (ucontext_t *ucp, void (*func) (void), int argc, ...)
|
||||
stack_end = (long) sc->sc_stack.ss_sp + sc->sc_stack.ss_size;
|
||||
|
||||
stack_start = (stack_start + 7) & -8;
|
||||
stack_end = (stack_start + 15) & -16;
|
||||
stack_end = stack_end & -16;
|
||||
|
||||
if (argc > 8)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user