commit | 3ba686544ff0838d5fd977952348d8088b9c69c1 | [log] [tgz] |
---|---|---|
author | wdenk <wdenk> | Wed Oct 11 22:04:29 2000 +0000 |
committer | wdenk <wdenk> | Wed Oct 11 22:04:29 2000 +0000 |
tree | 159ad43ef6888075d4a466309bbd89afed6f4180 | |
parent | b15cbc0be004d352d4dd661546847bd52fbf8a28 [diff] [blame] |
Initial revision
diff --git a/include/asm-ppc/sigcontext.h b/include/asm-ppc/sigcontext.h new file mode 100644 index 0000000..4bd66a7 --- /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