aboutsummaryrefslogtreecommitdiff
path: root/include/asm-x86/ucontext_64.h
blob: 159a3da9e112e5e6ea3c49bc53adb718c4858942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _ASMX8664_UCONTEXT_H
#define _ASMX8664_UCONTEXT_H

struct ucontext {
	unsigned long	  uc_flags;
	struct ucontext  *uc_link;
	stack_t		  uc_stack;
	struct sigcontext uc_mcontext;
	sigset_t	  uc_sigmask;	/* mask last for extensibility */
};

#endif