12 lines
165 B
C
Raw Normal View History

2025-05-10 21:49:39 +08:00
#include <asm/ucontext.h>
struct sigframe {
struct ucontext uc;
unsigned long retcode[4];
};
struct rt_sigframe {
struct siginfo info;
struct sigframe sig;
};