mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-20 16:14:30 +07: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;
|
||
|
};
|