]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - arch/um/os-Linux/trap.c
[S390] update default configuration
[karo-tx-linux.git] / arch / um / os-Linux / trap.c
index a9f6b26f9828f8f4c0a99bc6a2f8449054be8bb8..1df231a26244b0ee3e95982e98e3946a60fc51e3 100644 (file)
@@ -5,7 +5,6 @@
 
 #include <stdlib.h>
 #include <signal.h>
-#include <setjmp.h>
 #include "kern_util.h"
 #include "user_util.h"
 #include "os.h"
@@ -35,7 +34,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);
 }