diff options
Diffstat (limited to 'arch/um/os-Linux/trap.c')
-rw-r--r-- | arch/um/os-Linux/trap.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/arch/um/os-Linux/trap.c b/arch/um/os-Linux/trap.c new file mode 100644 index 000000000000..6e7841c23d26 --- /dev/null +++ b/arch/um/os-Linux/trap.c | |||
@@ -0,0 +1,17 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com) | ||
3 | * Licensed under the GPL | ||
4 | */ | ||
5 | |||
6 | #include <setjmp.h> | ||
7 | #include <signal.h> | ||
8 | #include "kern_util.h" | ||
9 | #include "user_util.h" | ||
10 | #include "os.h" | ||
11 | |||
12 | void do_longjmp(void *b, int val) | ||
13 | { | ||
14 | sigjmp_buf *buf = b; | ||
15 | |||
16 | siglongjmp(*buf, val); | ||
17 | } | ||