swh:1:snp:32555a3fd8878f019c2ebd6c964bc1edcaeff337
Raw File
Tip revision: 6fc32179de9e14c542e0b1760e412bc670611c53 authored by Linus Torvalds on 07 August 2005, 18:18:56 UTC
Linux 2.6.13-rc6
Tip revision: 6fc3217
ucontext.h
#ifndef _ASM_UCONTEXT_H
#define _ASM_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
back to top