1
0
Fork 0
android_kernel_rockchip_tart/arch/arm/kernel/signal.h
2025-06-27 00:32:42 -05:00

13 lines
209 B
C

#include <asm/ucontext.h>
struct sigframe {
struct ucontext uc;
unsigned long retcode[4];
};
struct rt_sigframe {
struct siginfo info;
struct sigframe sig;
};
extern struct page *get_signal_page(void);