[PATCH] uml: tidy longjmp macro

The UML_SETJMP macro was requiring its users to pass in a argument which it
could supply itself, since it wasn't used outside that invocation of the
macro.

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-07-14 00:24:02 -07:00
committed by Linus Torvalds
parent 8477b55ba1
commit a5df0d1a2c
4 changed files with 13 additions and 18 deletions

View File

@@ -8,8 +8,8 @@
longjmp(*buf, val); \
} while(0)
#define UML_SETJMP(buf, enable) ({ \
int n; \
#define UML_SETJMP(buf) ({ \
int n, enable; \
enable = get_signals(); \
n = setjmp(*buf); \
if(n != 0) \