kernel_samsung_a34x-permissive/arch/arm/kernel/signal.h
2024-04-28 15:51:13 +02: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;
};