6db4831e98
Android 14
12 lines
165 B
C
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;
|
|
};
|