[PATCH] uml: change sigjmp_buf to jmp_buf

Clean up the jmpbuf code.  Since softints, we no longer use sig_setjmp, so
the UML_SIGSETJMP wrapper now has a misleading name.  Also, I forgot to
change the buffers from sigjmp_buf to jmp_buf.

Signed-off-by: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
Jeff Dike
2006-04-18 22:21:41 -07:00
committed by Linus Torvalds
parent 4127272c38
commit ad28e02978
6 changed files with 27 additions and 27 deletions

View File

@@ -35,7 +35,7 @@ void os_fill_handlinfo(struct kern_handlers h)
void do_longjmp(void *b, int val)
{
sigjmp_buf *buf = b;
jmp_buf *buf = b;
UML_SIGLONGJMP(buf, val);
UML_LONGJMP(buf, val);
}