https://github.com/torvalds/linux
Revision cd07202cc8262e1669edff0d97715f3dd9260917 authored by Linus Torvalds on 14 October 2010, 23:26:43 UTC, committed by Linus Torvalds on 14 October 2010, 23:26:43 UTC
1 parent 3aa0ce8
Raw File
Tip revision: cd07202cc8262e1669edff0d97715f3dd9260917 authored by Linus Torvalds on 14 October 2010, 23:26:43 UTC
Linux 2.6.36-rc8
Tip revision: cd07202
ucontext.h
#ifndef __ASM_GENERIC_UCONTEXT_H
#define __ASM_GENERIC_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 /* __ASM_GENERIC_UCONTEXT_H */
back to top