[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:
committed by
Linus Torvalds
parent
4127272c38
commit
ad28e02978
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user