nt9856x/BSP/linux-kernel/arch/arm/kernel/signal.h
2023-03-28 15:07:53 +08:00

12 lines
165 B
C

#include <asm/ucontext.h>
struct sigframe {
struct ucontext uc;
unsigned long retcode[4];
};
struct rt_sigframe {
struct siginfo info;
struct sigframe sig;
};