Skip to content

Commit

Permalink
* sysdeps/mach/hurd/i386/longjmp-ts.c: Use new array format for
Browse files Browse the repository at this point in the history
	jmp_buf.
  • Loading branch information
Roland McGrath committed Sep 1, 1995
1 parent 44c8d1a commit f405bed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Fri Sep 1 16:16:12 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>

* sysdeps/mach/hurd/i386/longjmp-ts.c: Use new array format for
jmp_buf.

* libc-symbols.h (link_warning): Take new first arg SYMBOL; ask
for a warning on references to that specific symbol, not the
entire containing object file.
Expand Down
14 changes: 7 additions & 7 deletions sysdeps/mach/hurd/i386/longjmp-ts.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Perform a `longjmp' on a Mach thread_state. i386 version.
Copyright (C) 1991, 1994 Free Software Foundation, Inc.
Copyright (C) 1991, 1994, 1995 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
Expand Down Expand Up @@ -29,11 +29,11 @@ _hurd_longjmp_thread_state (void *state, jmp_buf env, int val)
{
struct i386_thread_state *ts = state;

ts->ebx = env[0].__jmpbuf[0].__bx;
ts->esi = env[0].__jmpbuf[0].__si;
ts->edi = env[0].__jmpbuf[0].__di;
ts->ebp = (int) env[0].__jmpbuf[0].__bp;
ts->uesp = (int) env[0].__jmpbuf[0].__sp;
ts->eip = (int) env[0].__jmpbuf[0].__pc;
ts->ebx = env[0].__jmpbuf[JB_BX];
ts->esi = env[0].__jmpbuf[JB_SI];
ts->edi = env[0].__jmpbuf[JB_DI];
ts->ebp = env[0].__jmpbuf[JB_BP];
ts->uesp = env[0].__jmpbuf[JB_SP];
ts->eip = env[0].__jmpbuf[JB_PC];
ts->eax = val ?: 1;
}

0 comments on commit f405bed

Please sign in to comment.