uboot/u-boot-stm32mp-2020.01/arch/powerpc/include/asm/sigcontext.h

16 lines
237 B
C
Raw Permalink Normal View History

2024-01-10 06:52:34 +00:00
#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