https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 6e9ffcb5c769f77654019c8b557d6240461c7d35 authored by Jason Self on 28 February 2013, 14:33:46 UTC
Linux-libre 3.0.67-gnu1
Tip revision: 6e9ffcb
ucontext.h
#ifndef _ASMAXP_UCONTEXT_H
#define _ASMAXP_UCONTEXT_H

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

#endif /* !_ASMAXP_UCONTEXT_H */
back to top