summaryrefslogtreecommitdiffstats
path: root/include/asm-ppc/ucontext.h
blob: 3d60332a3a44d0968a7165a1ade5a5d54be82e38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _ASMPPC_UCONTEXT_H
#define _ASMPPC_UCONTEXT_H

/* Copied from i386. */

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

#endif /* !_ASMPPC_UCONTEXT_H */