Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / u-boot / arch / powerpc / include / asm / sigcontext.h
diff --git a/qemu/roms/u-boot/arch/powerpc/include/asm/sigcontext.h b/qemu/roms/u-boot/arch/powerpc/include/asm/sigcontext.h
new file mode 100644 (file)
index 0000000..715c868
--- /dev/null
@@ -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