summaryrefslogtreecommitdiffstats
path: root/arch/alpha/include/asm/ucontext.h
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-08-20 11:52:15 +0200
committerIngo Molnar <mingo@elte.hu>2008-08-20 11:52:15 +0200
commit7393423dd9b5790a3115873be355e9fc862bce8f (patch)
treefc83214602c8ce41dc06d5c8e21deada679521f7 /arch/alpha/include/asm/ucontext.h
parentx86: <asm/asm.h> consistency cleanups (diff)
parentMerge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/... (diff)
downloadlinux-7393423dd9b5790a3115873be355e9fc862bce8f.tar.xz
linux-7393423dd9b5790a3115873be355e9fc862bce8f.zip
Merge branch 'linus' into x86/cleanups
Diffstat (limited to 'arch/alpha/include/asm/ucontext.h')
-rw-r--r--arch/alpha/include/asm/ucontext.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/alpha/include/asm/ucontext.h b/arch/alpha/include/asm/ucontext.h
new file mode 100644
index 000000000000..47578ab42152
--- /dev/null
+++ b/arch/alpha/include/asm/ucontext.h
@@ -0,0 +1,13 @@
+#ifndef _ASMAXP_UCONTEXT_H
+#define _ASMAXP_UCONTEXT_H
+
+struct ucontext {
+ unsigned long uc_flags;
+ struct ucontext *uc_link;
+ old_sigset_t uc_osf_sigmask;
+ stack_t uc_stack;
+ struct sigcontext uc_mcontext;
+ sigset_t uc_sigmask; /* mask last for extensibility */
+};
+
+#endif /* !_ASMAXP_UCONTEXT_H */