1#ifndef _ASMPPC64_UCONTEXT_H
2#define _ASMPPC64_UCONTEXT_H
3
4#include <asm/sigcontext.h>
5
6/* Copied from i386.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14struct ucontext {
15	unsigned long	  uc_flags;
16	struct ucontext  *uc_link;
17	stack_t		  uc_stack;
18	struct sigcontext_struct uc_mcontext;
19	sigset_t	  uc_sigmask;	/* mask last for extensibility */
20};
21
22#endif /* _ASMPPC64_UCONTEXT_H */
23