diff options
author | Roland McGrath <roland@gnu.org> | 1996-01-04 00:06:01 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-01-04 00:06:01 +0000 |
commit | 6df1b2474adfc23c9cfff5a4496108bea0c37511 (patch) | |
tree | 48bd35ba5b0d766560edde694efec2b791ada613 /sysdeps/mach/hurd/jmp-unwind.c | |
parent | 71733723fb421bd54467d1a27096463ed1dcc2ed (diff) | |
download | glibc-6df1b2474adfc23c9cfff5a4496108bea0c37511.tar.gz glibc-6df1b2474adfc23c9cfff5a4496108bea0c37511.tar.xz glibc-6df1b2474adfc23c9cfff5a4496108bea0c37511.zip |
Rewritten. cvs/libc-960103
Diffstat (limited to 'sysdeps/mach/hurd/jmp-unwind.c')
-rw-r--r-- | sysdeps/mach/hurd/jmp-unwind.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/mach/hurd/jmp-unwind.c b/sysdeps/mach/hurd/jmp-unwind.c index 822501f8e5..20ca5f8aa6 100644 --- a/sysdeps/mach/hurd/jmp-unwind.c +++ b/sysdeps/mach/hurd/jmp-unwind.c @@ -1,5 +1,5 @@ /* _longjmp_unwind -- Clean up stack frames unwound by longjmp. Hurd version. -Copyright (C) 1995 Free Software Foundation, Inc. +Copyright (C) 1995, 1996 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 @@ -18,8 +18,9 @@ not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <setjmp.h> -#include <hurd/signal.h> #include <hurd/userlink.h> +#include <hurd/signal.h> +#include <hurd/sigpreempt.h> #include <assert.h> @@ -36,7 +37,6 @@ _longjmp_unwind (jmp_buf env, int val) { struct hurd_sigstate *ss = _hurd_self_sigstate (); struct hurd_userlink *link; - struct hurd_signal_preempter **p; /* All access to SS->active_resources must take place inside a critical section where signal handlers cannot run. */ |