diff options
author | wdenk <wdenk> | 2000-10-11 22:04:29 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2000-10-11 22:04:29 +0000 |
commit | 3ba686544ff0838d5fd977952348d8088b9c69c1 (patch) | |
tree | 159ad43ef6888075d4a466309bbd89afed6f4180 /include/asm-ppc/sigcontext.h | |
parent | b15cbc0be004d352d4dd661546847bd52fbf8a28 (diff) | |
download | u-boot-imx-3ba686544ff0838d5fd977952348d8088b9c69c1.zip u-boot-imx-3ba686544ff0838d5fd977952348d8088b9c69c1.tar.gz u-boot-imx-3ba686544ff0838d5fd977952348d8088b9c69c1.tar.bz2 |
Initial revision
Diffstat (limited to 'include/asm-ppc/sigcontext.h')
-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 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 |