diff options
author | wdenk | 2000-10-11 22:04:29 +0000 |
---|---|---|
committer | wdenk | 2000-10-11 22:04:29 +0000 |
commit | 3ba686544ff0838d5fd977952348d8088b9c69c1 (patch) | |
tree | 159ad43ef6888075d4a466309bbd89afed6f4180 /include | |
parent | b15cbc0be004d352d4dd661546847bd52fbf8a28 (diff) |
Initial revision
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-ppc/sigcontext.h | 15 |
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 00000000000..4bd66a707da --- /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 |