[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
@ -104,7 +104,7 @@ void setup_hostinfo(void)
|
||||
int setjmp_wrapper(void (*proc)(void *, void *), ...)
|
||||
{
|
||||
va_list args;
|
||||
sigjmp_buf buf;
|
||||
jmp_buf buf;
|
||||
int n;
|
||||
|
||||
n = sigsetjmp(buf, 1);
|
||||
|
Reference in New Issue
Block a user