summaryrefslogtreecommitdiffstats
path: root/include/asm-avr32/ucontext.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-avr32/ucontext.h')
-rw-r--r--include/asm-avr32/ucontext.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/asm-avr32/ucontext.h b/include/asm-avr32/ucontext.h
new file mode 100644
index 000000000000..ac7259c2a799
--- /dev/null
+++ b/include/asm-avr32/ucontext.h
@@ -0,0 +1,12 @@
+#ifndef __ASM_AVR32_UCONTEXT_H
+#define __ASM_AVR32_UCONTEXT_H
+
+struct ucontext {
+ unsigned long uc_flags;
+ struct ucontext * uc_link;
+ stack_t uc_stack;
+ struct sigcontext uc_mcontext;
+ sigset_t uc_sigmask;
+};
+
+#endif /* __ASM_AVR32_UCONTEXT_H */