repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
14 lines
209 B
C
14 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);
|