Revision 7a20655bc5316ccec0f036cde46e609ba5571f5e authored by Linus Torvalds on 29 October 2006, 21:53:05 UTC, committed by Linus Torvalds on 29 October 2006, 21:53:05 UTC
* git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog:
  [WATCHDOG] sc1200wdt.c pnp unregister fix.
2 parent s e6c9f71 + 150ed8e
Raw File
ucontext.h
#ifndef __ASM_SH_UCONTEXT_H
#define __ASM_SH_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_SH_UCONTEXT_H */
back to top