mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-27 01:11:31 +00:00
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;
|
||
|
|
};
|