mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 07:12:09 +00:00
[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:
parent
4127272c38
commit
ad28e02978
6 changed files with 27 additions and 27 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue