blob: b7b838b05229aa5cd702611013cdae97fa033b07 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001#include <asm/ucontext.h>
2
3struct sigframe {
4 struct ucontext uc;
5 unsigned long retcode[4];
6};
7
8struct rt_sigframe {
9 struct siginfo info;
10 struct sigframe sig;
11};