summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorwdenk <wdenk>2000-10-11 22:04:29 +0000
committerwdenk <wdenk>2000-10-11 22:04:29 +0000
commite47b2abf2f405adc271aa2728dc2399eb7187143 (patch)
tree159ad43ef6888075d4a466309bbd89afed6f4180 /include
parent915531931a93956644f2b9efa4e48d857ef26fc2 (diff)
Das U-Boot: Universal Boot Loader
Diffstat (limited to 'include')
-rw-r--r--include/asm-ppc/sigcontext.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/asm-ppc/sigcontext.h b/include/asm-ppc/sigcontext.h
new file mode 100644
index 0000000000..4bd66a707d
--- /dev/null
+++ b/include/asm-ppc/sigcontext.h
@@ -0,0 +1,15 @@
+#ifndef _ASM_PPC_SIGCONTEXT_H
+#define _ASM_PPC_SIGCONTEXT_H
+
+#include <asm/ptrace.h>
+
+
+struct sigcontext_struct {
+ unsigned long _unused[4];
+ int signal;
+ unsigned long handler;
+ unsigned long oldmask;
+ struct pt_regs *regs;
+};
+
+#endif