summaryrefslogtreecommitdiffstats
path: root/arch/um
diff options
context:
space:
mode:
Diffstat (limited to 'arch/um')
-rw-r--r--arch/um/include/longjmp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/include/longjmp.h b/arch/um/include/longjmp.h
index 50f5df1..018b381 100644
--- a/arch/um/include/longjmp.h
+++ b/arch/um/include/longjmp.h
@@ -5,13 +5,13 @@
#include "os.h"
#define UML_SIGLONGJMP(buf, val) do { \
- siglongjmp(*buf, val); \
+ longjmp(*buf, val); \
} while(0)
#define UML_SIGSETJMP(buf, enable) ({ \
int n; \
enable = get_signals(); \
- n = sigsetjmp(*buf, 1); \
+ n = setjmp(*buf); \
if(n != 0) \
set_signals(enable); \
n; })
OpenPOWER on IntegriCloud