diff options
| author | Jeff Dike <jdike@addtoit.com> | 2006-09-26 02:32:59 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-26 11:49:05 -0400 |
| commit | 13c06be399902c9ebda08e092edb1614bb4a3761 (patch) | |
| tree | c67134cfb7efd23ab7017fde32657fa3a7e58154 /arch/um/os-Linux/sys-i386 | |
| parent | c5c6ba4e08ab9c9e390a0f3a7d9a5c332f5cc6ef (diff) | |
[PATCH] uml: Use klibc setjmp/longjmp
This patch adds an implementation of setjmp and longjmp to UML, allowing
access to the inside of a jmpbuf without needing the access macros formerly
provided by libc.
The implementation is stolen from klibc. I copy the relevant files into
arch/um. I have another patch which avoids the copying, but requires klibc be
in the tree.
setjmp and longjmp users required some tweaking. Includes of <setjmp.h> were
removed and includes of the UML longjmp.h were added where necessary. There
are also replacements of siglongjmp with UML_LONGJMP which I somehow missed
earlier.
Signed-off-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um/os-Linux/sys-i386')
| -rw-r--r-- | arch/um/os-Linux/sys-i386/registers.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/um/os-Linux/sys-i386/registers.c b/arch/um/os-Linux/sys-i386/registers.c index 516f66dd87e3..1f90a2d71386 100644 --- a/arch/um/os-Linux/sys-i386/registers.c +++ b/arch/um/os-Linux/sys-i386/registers.c | |||
| @@ -5,12 +5,12 @@ | |||
| 5 | 5 | ||
| 6 | #include <errno.h> | 6 | #include <errno.h> |
| 7 | #include <string.h> | 7 | #include <string.h> |
| 8 | #include <setjmp.h> | ||
| 9 | #include "sysdep/ptrace_user.h" | 8 | #include "sysdep/ptrace_user.h" |
| 10 | #include "sysdep/ptrace.h" | 9 | #include "sysdep/ptrace.h" |
| 11 | #include "uml-config.h" | 10 | #include "uml-config.h" |
| 12 | #include "skas_ptregs.h" | 11 | #include "skas_ptregs.h" |
| 13 | #include "registers.h" | 12 | #include "registers.h" |
| 13 | #include "longjmp.h" | ||
| 14 | #include "user.h" | 14 | #include "user.h" |
| 15 | 15 | ||
| 16 | /* These are set once at boot time and not changed thereafter */ | 16 | /* These are set once at boot time and not changed thereafter */ |
| @@ -132,9 +132,9 @@ void get_safe_registers(unsigned long *regs, unsigned long *fp_regs) | |||
| 132 | 132 | ||
| 133 | void get_thread_regs(union uml_pt_regs *uml_regs, void *buffer) | 133 | void get_thread_regs(union uml_pt_regs *uml_regs, void *buffer) |
| 134 | { | 134 | { |
| 135 | struct __jmp_buf_tag *jmpbuf = buffer; | 135 | struct __jmp_buf *jmpbuf = buffer; |
| 136 | 136 | ||
| 137 | UPT_SET(uml_regs, EIP, jmpbuf->__jmpbuf[JB_PC]); | 137 | UPT_SET(uml_regs, EIP, jmpbuf->__eip); |
| 138 | UPT_SET(uml_regs, UESP, jmpbuf->__jmpbuf[JB_SP]); | 138 | UPT_SET(uml_regs, UESP, jmpbuf->__esp); |
| 139 | UPT_SET(uml_regs, EBP, jmpbuf->__jmpbuf[JB_BP]); | 139 | UPT_SET(uml_regs, EBP, jmpbuf->__ebp); |
| 140 | } | 140 | } |
