https://jxself.org/git/linux-libre.git
Raw File
Tip revision: c311535ea528a547143da7de6ac304a8b11e3cb4 authored by Jason Self on 10 February 2017, 10:18:05 UTC
Linux-libre 3.10.105-gnu
Tip revision: c311535
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