summaryrefslogtreecommitdiffstats
path: root/include/asm-s390/ucontext.h
blob: d4e39ae77de98c8830d4c10ad800605de76e6b1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 *  include/asm-s390/ucontext.h
 *
 *  S390 version
 *
 *  Derived from "include/asm-i386/ucontext.h"
 */

#ifndef _ASM_S390_UCONTEXT_H
#define _ASM_S390_UCONTEXT_H

struct ucontext {
	unsigned long	  uc_flags;
	struct ucontext  *uc_link;
	stack_t		  uc_stack;
	sigset_t	  uc_sigmask;	/* mask last for extensibility */
	struct sigcontext *sc; /* Added for pthread support */
};



#endif /* !_ASM_S390_UCONTEXT_H */