"Das U-Boot" Source Tree
at master 14 lines 236 B view raw
1#ifndef _ASM_PPC_SIGCONTEXT_H 2#define _ASM_PPC_SIGCONTEXT_H 3 4#include <asm/ptrace.h> 5 6struct sigcontext_struct { 7 unsigned long _unused[4]; 8 int signal; 9 unsigned long handler; 10 unsigned long oldmask; 11 struct pt_regs *regs; 12}; 13 14#endif