summaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-09-01 22:26:36 +0000
committerRoland McGrath <roland@gnu.org>1995-09-01 22:26:36 +0000
commitf405bed5ef3c228aa552afde9451048ec1a15129 (patch)
tree2f9939e4e20750ddd6def88ab19c458aba088efd /sysdeps
parent44c8d1a2a8775ad8c67fa1c46ccc67cccf585d93 (diff)
* sysdeps/mach/hurd/i386/longjmp-ts.c: Use new array format for
jmp_buf.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/mach/hurd/i386/longjmp-ts.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sysdeps/mach/hurd/i386/longjmp-ts.c b/sysdeps/mach/hurd/i386/longjmp-ts.c
index 7da9be2a26..15f71d4d7a 100644
--- a/sysdeps/mach/hurd/i386/longjmp-ts.c
+++ b/sysdeps/mach/hurd/i386/longjmp-ts.c
@@ -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
@@ -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;
}