Linux Audio

Check our new training course

Open-source upstreaming

Need help get the support for your hardware in upstream Linux?
Loading...
Note: File does not exist in v4.6.
 1#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};