Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
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>).
  • Loading branch information
Ulrich Drepper committed Apr 5, 2001
1 parent 96dd1a8 commit 8912b9a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/ia64/makecontext.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 8912b9a

Please sign in to comment.