3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-12 02:05:54 +00:00
Brooklyn/arch/arm/kernel/signal.h

14 lines
209 B
C
Raw Normal View History

2022-04-02 18:06:56 +05:00
#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);